So i want to know where to start or how to do this, how to see players in another place
Could you be a little more specific? Do you mean like you want to see what game a specific player is playing?
Not quite, like players of a place of my game
So you want to get the player list inside a server?
Like how many people are playing the game at the same time? (concurrent)
Sorry for the delay, but yeah that
You can just look here, do you mean over a span of a few days, or?
I think he wants to see the players in a specific place not game. A game combines all player counts from each place and adds it up creating a player count.
I do not think that’s possible, correct me if I’m wrong, but you could always add up all the concurrent players up.
You need to have every server count up how many players are in the server and then send that data to all the other servers using MessagingService every minute or so depending on how often you want it to check the playercount
This is possible, in roblox’s endpoints, there is an online status endpoint which returns where the user is, when they were online and lots more…
local function getUserTimeData(id)
local data = HttpService:GetAsync("https://api.rprxy.xyz/users/"..id.."/onlinestatus")
local ReturnedJSon = HttpService:JSONDecode(data.body)
print(ReturnedJSon)
return ReturnedJSon
end
print(getUserTimeData(their userid).LastLocation)
Basically this will get you what they were previously on. If they weren’t on it would say offline… I’m afraid you can only get this user and not all the users in that specific server though.
Is this what you wanted to know?
Kinda, thanks i will search more about it