Advertisement
markODO

TELEPORTER LOCAL SCRIPT

Jan 24th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. wait(1)
  2. player = game.Players.LocalPlayer
  3. button = script.Parent
  4. local debounce = false
  5.  
  6. function helpme()
  7. if not debounce then
  8.  
  9. debounce = true
  10. LowerTorso = player.Character.LowerTorso
  11. LowerTorso.CFrame = game.Workspace.part.CFrame -- change the "part" to where ever you want player to go
  12.  
  13. end
  14. end
  15. button.MouseButton1Click:connect(helpme)
  16.  
  17. while true do wait()
  18. debounce = false
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement