how to see peoples age group on roblox
You can’t directly see other players’ exact age or age group on Roblox as a regular user—Roblox keeps that information private for safety and compliance reasons. However, there are a few indirect ways to infer someone’s age bracket, and you can always check your own age group in your account settings.
How age groups work on Roblox
Roblox sorts accounts into age-based buckets (like “Under 13” and “13+”) based on:
- The birthday you entered when creating the account
- Optional age verification (ID or selfie-based estimation) that can update your age group
These groups affect:
- Who you can chat with and what filters are applied
- Which features (like voice chat) are available
- What content and ads you may see
Can you see other players’ age groups?
As a regular player
There is no official button or profile field that shows another user’s age group. Roblox does not display this publicly.
What you can sometimes infer:
- Chat behavior:
- If you try to whisper/message someone and get an error about age restrictions, that can hint they’re in a different age group than you. Some users have reported seeing specific error messages when age groups don’t match.
* Certain chat features (like open chat vs. restricted chat) are tied to age group, so observing how freely someone can chat can give clues—but this is not precise or guaranteed.
- Voice chat availability:
- Access to voice chat generally requires being 13+ and having age verification. If someone can use voice chat, they’re almost certainly in the 13+ bucket.
Important: These are indirect hints, not confirmed age data. Roblox deliberately avoids exposing exact ages or clear age-group labels on other users’ profiles.
As a game developer (scripts)
If you’re making a Roblox game, you still can’t get a player’s exact age or birthday, but you can access limited age-related info:
PolicyService:GetPolicyInfoForPlayerAsync(player)- Returns policy info like whether ads are allowed, which correlates loosely with being 13+ (though Roblox doesn’t officially recommend using this purely as an age check).
TextChatService:CanUsersChatAsync(userId1, userId2)- Lets you check if two users are allowed to chat, which depends partly on their age groups and related settings. This is server-side only.
Developers are explicitly not allowed to store or process personally identifiable information (PII) like birthdates.
How to check your own age group
You can see and, in some cases, redo your age group in your account settings:
On mobile (iOS/Android)
- Open the Roblox app.
- Tap More (bottom-right).
- Tap the gear icon for Settings.
- Go to Account Info.
- Scroll to the Personal section.
- You’ll see:
- Your birthday
- Your Age Group (e.g., “Under 13” or “13+”)
- Whether it says “Checked” or “Verified”
On PC / website
- Log in at roblox.com.
- Click the gear icon (top-right) → Settings.
- Choose Account Info.
- Under Personal , find Age Group above your birthday.
If your age group looks wrong or you want to re-verify:
- There may be an option like “Did we get your age group right?” with:
- Continue with ID (official ID verification), or
- Reset / Continue with camera (selfie-based age estimation, if available in your region)
- Note: Roblox often limits how many times you can reset the age check; sometimes it’s only one extra attempt.
Why Roblox hides others’ age groups
Roblox treats age and birthday as sensitive personal data. Exposing exact ages or clear age labels for other users would:
- Increase privacy and safety risks, especially for younger players
- Conflict with child-safety regulations (like COPPA in the U.S.) and Roblox’s own policies
So the system is designed so that:
- You know your own age group
- The platform uses it internally to filter chat, features, and content
- Other users only see indirect effects, not the raw data
Quick recap
- You cannot directly view another player’s age or age group on their profile.
- You can sometimes infer it from chat/voice restrictions and error messages, but it’s not precise.
- Developers can use limited APIs (
PolicyService,TextChatService) to tailor experiences by age policies, but not to read exact ages.
- To see your own age group: go to Settings → Account Info → Personal and check the “Age Group” line.
Information gathered from public forums or data available on the internet and portrayed here.