How to make a text tagging (moderation?) system

Made a tool where players can type what they want to appear on a sign tool. How would I make a moderation system in which it tags inappropriate words?

The only way I thought of is making a table with bad words which are not permitted, although, obviously I can’t list all bad words lol

You’ll have to use this:

I don’t think you’re allowed to use your own text moderation system and you have to use Roblox’s text filtering on any user input that is displayed to others.

1 Like

I guess one way you could list your bad words would be to start the word and then put a%a%a%a% after it.

For example:

local badWords = {
"somethinga%a%a%a%a%",
"somethinga%a%a%a%a%"
}

For further reference you could check the documentation here: