There appears to be an issue with how the group member count is being rounded and displayed in the new Group Page UI on Roblox. Specifically, the rounding logic incorrectly rounds up decimal values when displaying abbreviated member counts, even when the value should logically round down.
For instance, in a group with 581,861 members, the count is shown as 581.9K members in the new UI, located under the group name on the left panel. However, based on standard rounding logic (and similar precedents like follower count), this should be 581.8K+, not 581.9K+.
This issue does not occur in the old group scroll frame layout, where the member count is not displayed. The problem is exclusive to the new UI.
This behavior is similar to a previously reported bug regarding the incorrect rounding of follower counts, which was resolved here:
https://devforum.roblox.com/t/incorrect-rounding-of-follower-count-on-player-profile/3360292
That report led to follower counts being rounded down correctly. We now observe the same rounding issue reappearing with group member counts, and it should be addressed for consistency.
Steps to Reproduce:
- Visit any group with a member count where the last three digits fall in the upper half of a hundred range (e.g., between 850 and 899).
- For example:
- A group with 581,861 members will be shown as 581.9K instead of 581.8K.
- A group with 4552 members will be shown as 4.6K instead of 4.5K.
- A group with 32,899 members will be shown as 32.9K instead of 32.8K.
- View the new group page UI (not the old scroll frame version).
- Note the member count displayed under the group name.
- Compare it to the actual member count; observe that it was incorrectly rounded up instead of rounded down.
Expected Behavior:
The member count should be rounded down to the nearest tenth (e.g., 581.861 → 581.8K), just like the follower count fix previously implemented.
Actual Behavior:
The member count is being rounded up (e.g., 581.861 → 581.9K), which creates inconsistency and inaccurate representation.

