Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --3dgamers word banner for builderman
- --when these words are said the speaker of these words a banned!
- function onChatted(msg, recipient, speaker)
- -- convert to all lower case
- local source = string.lower(speaker.Name)
- msg = string.lower(msg)
- if (msg == "heck") then --filter
- local m = Instance.new("Message")
- m.Text = "Swear filter activated."--filter
- m.Parent = game.Workspace.source
- wait(2)
- source.Parent = nil
- m.Parent = nil
- speaker:Kick()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement