Advertisement
noober662

chat b8yasdfidhusser

Mar 12th, 2024
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.75 KB | None | 0 0
  1. --[[
  2. Script by CrAZy#8814
  3. Should bypass anything except numbers have to be 13+
  4. usage:
  5. /e texthere
  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) == "/e " 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         game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(b,"All")
  25.         end
  26.     end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement