themightycta

Roblox Exploit Teleport Scary Script Working

Mar 10th, 2023
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. -- Get the game ID from the URL
  2. local gameId = "4462209656"
  3.  
  4. -- Get the teleport service
  5. local teleportService = game:GetService("TeleportService")
  6.  
  7. -- Get the place teleport URL
  8. local placeTeleportUrl = "https://www.roblox.com/games/" .. gameId
  9.  
  10. -- Get the game's spawn point
  11. local spawnPoint = game.Workspace:FindFirstChild("SpawnPoint")
  12.  
  13. -- Teleport all players to the spawn point
  14. for _, player in pairs(game.Players:GetPlayers()) do
  15.     teleportService:Teleport(placeTeleportUrl, spawnPoint, player)
  16. end
  17.  
  18. -- themightycta
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment