TX_YT1234

Click TP tool by me

Jan 16th, 2021
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local hum = plr.Character.HumanoidRootPart
  3. local mouse = plr:GetMouse()
  4.  
  5. local tool = Instance.new("Tool")
  6. tool.RequiresHandle = false
  7. tool.Name = "Click TP"
  8. tool.Parent = plr.Backpack
  9.  
  10. tool.Activated:Connect(function()
  11. hum.CFrame = CFrame.new(mouse.Hit.Position)+Vector3.new(0,3,0)
  12. end)
  13.  
Advertisement
Add Comment
Please, Sign In to add comment