Advertisement
Josemmoya

secret hee hee ;)

Feb 17th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Filtered = {"Heck","N word","J evil"}
  2. game.Players.PlayerAdded:connect(function(p)
  3. p.Chatted:connect(function(msg)
  4. for i,v in pairs(Filtered) do
  5. if string.find(msg:lower(), v:lower()) then
  6. p:Kick("Account Terminated: Our content monitors have determined that your behavior at ROBLOX has been in violation of our Terms of Service. Reviewed: N/A. Moderator note: Cursing is against the ROBLOX ToS. Offensive Item: Bad Word. Your account has been terminated. Check your homepage.")
  7. end
  8. end
  9. end)
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement