Facebook
From Fiery Gibbon, 1 Year ago, written in Plain Text.
This paste is a reply to Untitled from Ungracious Giraffe - view diff
Embed
Download Paste or View Raw
Hits: 178
  1. mouse = game.Players.LocalPlayer:GetMouse()
  2. tool = Instance.new("Tool")
  3. tool.RequiresHandle = false
  4. tool.Name = "Equip to Click TP"
  5. tool.Activated:connect(function()
  6. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  7. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  8. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  9. end)
  10. tool.Parent = game.Players.LocalPlayer.Backpack

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled Round Dolphin text 1 Year ago.