Global Messaging System

Can I get banned if my global messaging system isn’t filtered? I am the only one that can use it

1 Like

Hello! if you don’t say anything bad then don’t worry, you’ll not get banned. If you want to filter the text try something like this (I highly suggest you to filter it incase you get moderated):

local textService = game:GetService("TextService")

local filteredtext = ts:FilterStringAsync(text, YourUserId):GetNonChatStringForBroadcastAsync()
print(filteredtext)
1 Like

No, unless you actually send unfiltered innapropriate stuff

Any text that WILL be displayed to the players that you do not control MUST be filtered.

You must filter any displayed text that you don’t have explicit control over to make sure your experiences are compliant.
Source: Text Filtering | Documentation - Roblox Creator Hub

I am not sure how your global messaging system would work, but if it’s messages sent by players then it MUST be filtered. You do not control what they will say.

It is better to be compliant in text filtering than getting moderated.

Just filter it to be safe. There isn’t any disadvantage to having filtering, apart from the few lines of code it takes to implement.

Disabling filtering is strictly forbidden, and will get your game and/or account terminated. Even if you don’t send anything bad, some words are filtered due to meaning bad things in other languages.