Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Teleport all players
- local TPS = game:GetService("TeleportService")
- local PlaceID = 15929560031
- script.Parent.Touched:Connect(function(hit)
- if hit.Parent:FindFirstChild("Humanoid") then
- TPS:TeleportAsync(PlaceID, game.Players:GetChildren())
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement