- What do you want to achieve?
I need to confirm whether a private player-to-developer feedback system
is compliant with Roblox Terms of Service before launching it in my game.
- What is the issue?
The Roblox ToS mentions “Communication Features” (Party Chat, Direct Chat,
Voice Chat) that require age checks. My system (called the “Willow Post”)
is a private feedback channel where:
- Only the developer and the player who submitted can see messages
- Players cannot see each other’s feedback (completely private)
- Text is filtered via TextService:FilterStringAsync() +
GetNonChatStringForBroadcastAsync() - Messages are rate-limited (1 per 5 min, max 10 active, ban for abuse)
- Purpose: one-way player feedback/suggestions to the developer
I’m unclear whether this counts as a “Communication Feature” requiring
age-gating, or if it’s outside that scope since it’s not player-to-player
communication.
- What solutions have you thought of so far?
- Reviewed ToS Section 10.a on Communication Features
- Reviewed Chat System Guidelines on Creator Hub
- Implemented heavy text filtering (broadcast-safe + poison char removal)
- Added rate limiting and abuse penalties
But I haven’t found explicit guidance on private developer feedback systems,
so I need official clarification before shipping.
Specific Questions
- Does a private player-to-developer messaging system (where only devs
and the author see messages) violate ToS? - Is age-gating required for feedback systems, or only for
player-to-player communication? - What additional safety measures would be recommended?
Any guidance appreciated!