Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Script by CrAZy#8814
- Should bypass anything except numbers have to be 13+
- usage:
- /e texthere
- ]]--
- local bc = {"أ","ᵃ"}
- local r = function(size)
- return math.random(1,size)
- end
- if _G.chatBypassScript == nil then
- _G.chatBypassScript = 0
- end
- local currentVersion = _G.chatBypassScript + 1
- _G.chatBypassScript = currentVersion
- game.Players.LocalPlayer.Chatted:Connect(function(a)
- if currentVersion == _G.chatBypassScript then
- if a:sub(1,3) == "/e " then
- a = a:sub(4,#a)
- local b = ""..bc[r(#bc)]
- for i=1,#a do
- b = b..bc[r(#bc)]..a:sub(i,i)
- end game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(b,"All")
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement