Advertisement
Josemmoya

work u ugli

Feb 17th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. --3dgamers word banner for builderman
  2. --when these words are said the speaker of these words a banned!
  3.  
  4. function onChatted(msg, recipient, speaker)
  5.  
  6. -- convert to all lower case
  7.  
  8. local source = string.lower(speaker.Name)
  9. msg = string.lower(msg)
  10.  
  11. if (msg == "heck") then --filter
  12. local m = Instance.new("Message")
  13. m.Text = "Swear filter activated."--filter
  14. m.Parent = game.Workspace.source
  15. wait(2)
  16. source.Parent = nil
  17. m.Parent = nil
  18. speaker:Kick()
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement