Advertisement
ColerrnScripts

TELEPORT TO ROBLOX GAME SCRIPT

Jul 30th, 2019
3,668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. -TELEPORT TO ROBLOX GAME SCRIPT-
  2. ______________________________________________________________
  3. local TeleportService = game:GetService("TeleportService")
  4. local Place = 965894514
  5.  
  6. script.Parent.Touched:connect(function(hit)
  7. local player = game.Players:GetPlayerFromCharacter(hit.Parent)
  8. if player then
  9. TeleportService:Teleport(Place, player)
  10. end
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement