Advertisement
bennytrt2

[FE] Chat Bypass

Apr 28th, 2022
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. -- FE Chat Bypass
  2. -- By: Unknown
  3. -- Modded By: OpenGamerTips
  4.  
  5. local CommandPrefix = "/s" -- You can set a custom prefix here.
  6.  
  7. ---------------------------------------------------------------------------------------------------
  8. local bc = {"اا"}
  9. local r = function(size)
  10. return math.random(1,size)
  11. end
  12. if _G.chatBypassScript == nil then
  13. _G.chatBypassScript = 0
  14. end
  15. local currentVersion = _G.chatBypassScript + 1
  16. _G.chatBypassScript = currentVersion
  17. game.Players.LocalPlayer.Chatted:Connect(function(a)
  18. if currentVersion == _G.chatBypassScript then
  19. if a:sub(1,3) == CommandPrefix.." " then
  20. a = a:sub(4,#a)
  21. local b = ""..bc[r(#bc)]
  22. for i=1,#a do
  23. b = b..bc[r(#bc)]..a:sub(i,i)
  24. end
  25. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(b,"All")
  26. end
  27. end
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement