Advertisement
Sungmingamerpro13

TeleportScript

Jan 2nd, 2023
1,110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.28 KB | None | 0 0
  1. local TeleportService = game:GetService("TeleportService")
  2.  
  3. local Place = 7349369786
  4.  
  5.  
  6.  
  7. script.Parent.Touched:connect(function(hit)
  8.  
  9.     local player = game.Players:GetPlayerFromCharacter(hit.Parent)
  10.  
  11.     if player then
  12.  
  13.         TeleportService:Teleport(Place, player)
  14.  
  15.     end
  16.  
  17. end)
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement