local Http = game:GetService(“HttpService”)local TPS = game:GetService(“TeleportService”)local Api = “https://games.roblox.com/v1/games/”local _place = game.PlaceIdlocal _servers = Api.._place..”/servers/Public?sortOrder=Asc&limit=100″function ListServers(cursor)local Raw = game:HttpGet(_servers .. ((cursor and “&cursor=”..cursor) or “”))return Http:JSONDecode(Raw)endlocal Server, Next; repeatlocal Servers = ListServers(Next)Server = Servers.data[1]Next = Servers.nextPageCursoruntil ServerTPS:TeleportToPlaceInstance(_place,Server.id,game.Players.LocalPlayer)