Advertisement
Guest User

clicktp skid

a guest
Jan 21st, 2019
7,555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. --credits to original script maker https://v3rmillion.net/showthread.php?tid=263731
  2. mouse = game.Players.LocalPlayer:GetMouse()
  3. tool = Instance.new("Tool")
  4. tool.RequiresHandle = false
  5. tool.Name = "Click Teleport"
  6. tool.Activated:connect(function()
  7. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  8. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  9. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  10. end)
  11. tool.Parent = game.Players.LocalPlayer.Backpack
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement