Createok

filter bypass script

Dec 5th, 2019
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. repeat wait() until game:FindFirstChild("Players") ~= nil
  2. repeat wait() until game.Players.LocalPlayer ~= nil
  3.  
  4. local meta = getrawmetatable(game)
  5. local namecall = meta.__namecall
  6. setreadonly(meta,false)
  7.  
  8.  
  9.  
  10. meta.__namecall=function(self,...)
  11. if not checkcaller() then
  12. local Args={...}
  13. local method = getnamecallmethod()
  14. if method == "FireServer" and self == game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest then
  15. local message = Args[1]
  16. local name = ""
  17. if string.sub(message, 1, 3) == "/w " then
  18. message = string.gsub(message, "/w ", "")
  19. local space = string.find(message, " ")
  20. name = string.sub(message, 1, space - 1)
  21. message = string.sub(message, space + 1, -1)
  22. end
  23. text = ""
  24. for i = 1,#message do
  25. text = text..string.sub(message,i,i).."⁣"
  26. end
  27. if name ~= "" then
  28. text = "/w "..name.." "..text
  29. end
  30. Args[1] = text
  31. return namecall(self, unpack(Args))
  32. end
  33. end
  34. return namecall(self,...)
  35. end
  36. wait()
  37. game.StarterGui:SetCore("SendNotification", {
  38. Title = "Usage:";
  39. Text = "Simply chat like you normally would, all bad words will be bypassed! People under 13 won't see anything though.";
  40. Icon = "rbxassetid://2541869220";
  41. Duration = 8;
  42. })
Add Comment
Please, Sign In to add comment