Advertisement
tonyissocool

roblox click tp tool

Feb 17th, 2020
16,644
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local LocalPlayer = game.Players.LocalPlayer
  2. local rp = LocalPlayer.Character.HumanoidRootPart
  3. local tool = Instance.new("Tool",LocalPlayer.Backpack)
  4. local mouse = LocalPlayer:GetMouse()
  5. tool.Name = "click tp"
  6. tool.RequiresHandle = false
  7. tool.Activated:Connect(function()
  8. rp.CFrame = CFrame.new(mouse.Hit.X,mouse.Hit.Y + 4,mouse.Hit.Z)
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement