Is there a way to put anything Vulgar in scripts for chat filtering, or does It remove itself?
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