I’m trying to mass teleport a large amount of players to a game I do not own. However, it only works for sometimes/only works for some games. Why?
local success, error = pcall(function()
local players = {}
for i, plr in pairs(game:GetService("Players"):GetPlayers()) do
table.insert(players, plr)
plr:SetAttribute("Teleporting", true)
rs.Remotes.Announce:FireClient(plr, "Teleporting...", 8)
plr.leaderstats.Invades.Value += 1
local ui = script.PortalUI:Clone()
ui.Parent = plr.PlayerGui.UI
end
task.wait(1)
local maxRetries = 50
local RunService = game:GetService("RunService")
local success, result
for retry = 1, maxRetries do
success, result = pcall(function()
return tpService:TeleportAsync(place, players)
end)
if success then
break
end
warn("Teleport failed. Retrying... ("..retry.."/"..maxRetries..")")
RunService.Stepped:Wait()
end
end)