Checking information of a banned player

I’m not sure if this is the right category to post this. So apart of my game is being able to see information on banned roblox players. Like when they were last online. How they looked like before they got banned. Things like that. Would that be possible?

4 Likes

I think this would be more appropriate for #help-and-feedback:scripting-support, but I’ll try my best to answer your question here.

You could see when a player (including those who were banned) was last online by using the Roblox Web API (specifically using the http://api.roblox.com/users/[userId here]/onlinestatus endpoint), but you’ll need a proxy because requests to *.roblox.com websites using HttpService are blocked.

Fortunately, you can also see a banned player’s appearance by using Players:GetCharacterAppearanceInfoAsync() by just passing the player’s user ID in the function.

Even if you don’t have the player’s user ID, you can still use Players:GetUserIdFromNameAsync() by pass their username into the function in order to get their ID.

6 Likes

Thanks for the help, I appreciate it.

1 Like