Advertisement
Guest User

TP Tool Roblox

a guest
Jul 14th, 2022
3,289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.47 KB | None | 0 0
  1. -- This Roblox Script Only works on Synapse X!
  2. -- TP Tool For Roblox games that use the normal backpack.
  3.  
  4. mouse = game.Players.LocalPlayer:GetMouse()
  5. tool = Instance.new("Tool")
  6. tool.RequiresHandle = false
  7. tool.Name = "Click Teleport"
  8. tool.Activated:connect(function()
  9. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  10. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  11. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  12. end)
  13. tool.Parent = game.Players.LocalPlayer.Backpack
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement