I want to make a game where all you do is join and it will put you on a list and whenever you join back it gives you “Statistics” like what games you played and what badges you earned.
1 Like
For the badges and possibly games played, you can track the Badges using HTTPService.
Heres a similar post I found: How to get all a players badges?
When you find all the badges you can look for “First” or “Welcome” in the description or name to see if the badge is awarded when joined.
Also what is the list for and why do you have to join back?
Heres the Badge API: Badges v1 | Documentation - Roblox Creator Hub
{
"previousPageCursor": "string",
"nextPageCursor": "string",
"data": [
{
"creator": {
"id": 0,
"name": "string",
"type": "string"
},
"id": 0,
"name": "string",
"description": "string",
"displayName": "string",
"displayDescription": "string",
"enabled": true,
"iconImageId": 0,
"displayIconImageId": 0,
"awarder": {
"id": 0,
"type": 1,
"name": "string"
},
"statistics": {
"pastDayAwardedCount": 0,
"awardedCount": 0,
"winRatePercentage": 0
},
"created": "2025-04-07T01:41:26.089Z",
"updated": "2025-04-07T01:41:26.089Z"
}
]
}