- 📅 2025-07-06T21:43:19.526Z
- 👁️ 69 katselukertaa
- 🔓 Julkinen
local function general_M0c4()local s={}local n=""local a=0
repeat a=a+1 local u="https://games.roblox.com/v1/games/"..game.PlaceId.."/servers/Public?sortOrder=Asc&limit=100"if n~=""then u=u.."&cursor="..n end
local c,r=pcall(function()local e=game:HttpGet(u)return game:GetService("HttpService"):JSONDecode(e)end)
if c and r and r.data then for _,v in pairs(r.data)do if v.playing<v.maxPlayers and v.id~=game.JobId then table.insert(s,v.id)end end n=r.nextPageCursor or""else break end
task.wait(0.1)until n==""or a>=7 return s end
local function general_XyZ9()local aS=general_M0c4()if #aS>0 then local tS=aS[math.random(1,#aS)]game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId,tS,game:GetService("Players").LocalPlayer)end end
general_XyZ9()`