Advertisement
PedroH6159

TabTool.TELEPORT TOOL

Aug 29th, 2021 (edited)
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. tool = Instance.new('Tool', game.Players.{{KSPLOITNAME}}.Backpack)
  2. tool.Name = "Teleport"
  3. handle = Instance.new('Part', tool)
  4. handle.Name = 'Handle'
  5. handle.Size = Vector3.new(0.05, 0.05, 0.05)
  6. local Plr = game:GetService("Players").{{KSPLOITNAME}}
  7. local Mouse = Plr:GetMouse()
  8. tool.Activated:connect(function()
  9. if not Mouse.Target then
  10. return
  11. end
  12. Plr.Character:MoveTo(Mouse.Hit.p)
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement