Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(1)
- player = game.Players.LocalPlayer
- button = script.Parent
- local debounce = false
- function teleport()
- if not debounce then
- debounce = true
- LowerTorso = player.Character.LowerTorso -- Change ALL LowerTorso Texts To Torso For R6
- LowerTorso.CFrame = game.Workspace.YOURPARTNAME.CFrame
- end
- end
- button.MouseButton1Click:Connect(teleport)
- while true do wait()
- debounce = false
- wait(1)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement