Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-2

"Vulagr Language" in scripts

Asked by 10 years ago

Is there a way to put anything Vulgar in scripts for chat filtering, or does It remove itself?

1 answer

Log in to vote
0
Answered by 10 years ago

Replace "BadWordHere" with the banned word, Hope it helps

function onChatted(msg, recipient, speaker)

local source = string.lower(speaker.Name) msg = string.lower(msg)

if (string.match(msg, "BadWordHere")) then speaker.Character:remove() end

0
So, you can use it? :D FromLegoUniverse 264 — 10y
0
ROBLOX doesn't bother checking the source of every script in the game against the profanity filter. You can still get banned for inappropriate content, but they recognize that the majority of the use of inappropriate strings of characters is used either to filter them out or just because the syntax requires something roblox would otherwise filter. adark 5487 — 10y
0
But the ones roblox doesn't see, This can be used to stop. Dgrace12321 -2 — 10y
Ad

Answer this question