I’m using games.roblox.com API to get the servers from a game. The code:
local HttpService = game:GetService("HttpService")
local GameId = 370731277 --// Using MeepCity as an example because the game have Privated Servers.
local Link = HttpService:GetAsync("https://games.rprxy.xyz/v1/games/".. tostring(GameId) .."/servers/VIP")
print(Link)
You can get three server list types:
I’m trying to get every server in the VIP server list, to get every server created by TeleportToPrivateServer, however, in the API page, it doesn’t return any server, but in Studio/Game, it gives a HTTP 400 error, with one of those reasons:
I don’t know what i’m doing incorrectly, your help is really appreciated, thanks for reading.
Well either way if you are trying to get VIP servers for a game I’m pretty sure it won’t return anything.
{
“previousPageCursor”: null,
“nextPageCursor”: null,
“data”: []
}
I got returned this when I attempted to get VIP servers.
Also teleporttoprivateserver is something used with teleport service usually to create private lobbies and stuff