As the title says is there a way to get playing and visits from another game?
1 Like
Very vague question and I can’t say I understand what you mean.
You can’t transfer your concurrent player numbers and visits from a different game, and I can’t say that’s a feature I’d be particularly interested in seeking out - it’d create security risks.
1 Like
I meant is there a way to look at game visits Count/playing Count from another game
There is an endpoint that you can use, however I don’t know that endpoint off the top of my head. You’ll have to use a proxy server to attain the information though, since Roblox blocks Http Requests from their own servers.
1 Like
Send a Get request to the relevant endpoint.
local placeId = 123
local HttpService = game:GetService("HttpService")
local response = HttpService:GetAsync("https://games.rprxy.xyz/v1/games?universeIds="..placeId)
local data = HttpService:JSONDecode(response)
print(("current players: %d"):format(data.data[1].playing))
1 Like