Advertisement
AlexGamerBLOX

Teleport Players

Jan 10th, 2024
1,478
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | Source Code | 1 0
  1. -- Teleport all players
  2.  
  3. local TPS = game:GetService("TeleportService")
  4. local PlaceID = 15929560031
  5.  
  6. script.Parent.Touched:Connect(function(hit)
  7.     if hit.Parent:FindFirstChild("Humanoid") then
  8.         TPS:TeleportAsync(PlaceID, game.Players:GetChildren())
  9.     end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement