Advertisement
Guest User

Chat Bypass Roblox 2024

a guest
Oct 14th, 2024
633
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.09 KB | None | 0 1
  1. --[[
  2.       //  jxyserr script no longer works so I remade it and a skidded another not working method script but tried to make it work
  3.       // thanks AnthonyIsntHere for Reset Topic & Anti ChatLogger
  4.       // thanks harun for coding expertise
  5.       // no methods soon, will be updated
  6.  
  7.      This stuff I will not edit the update stuff [+] 07/20: Released.
  8.                  Readded Anthony's Anti Chat Logger (oops)
  9.      
  10.       [+] 07/28: Updated.
  11.                                                           ]]--
  12.  
  13.  
  14.  
  15. repeat task.wait() until game:IsLoaded()
  16. loadstring(game:HttpGet("https://raw.githubusercontent.com/AnthonyIsntHere/anthonysrepository/main/scripts/AntiChatLogger.lua", true))()
  17. wait()
  18. local chatService, players = game:GetService("Chat"), game:GetService("Players")
  19.  
  20. local custom_chars = {
  21.     [" "] = "￰ ",
  22.     ["i"] = "і",
  23.     ["e"] = "е",
  24.     ["g"] = "g",
  25.     ["c"] = "с",
  26.     ["o"] = "о",
  27.     ["p"] = "р",
  28.     ["s"] = "ѕ",
  29.     ["u"] = "u",
  30.     ["I"] = "Ӏ",
  31.     ["E"] = "Ε",
  32.     ["G"] = "ꓖ",
  33.     ["C"] = "С",
  34.     ["O"] = "Ο",
  35.     ["P"] = "Ρ",
  36.     ["S"] = "Ѕ",
  37.     ["U"] = "𐓎"
  38. }
  39.  
  40. local default = " ့"
  41.  
  42. local player = players.LocalPlayer
  43. local playerGui = player:WaitForChild("PlayerGui")
  44. local chatGui, chatBar = playerGui:WaitForChild("Chat")
  45.  
  46. repeat task.wait() until chatGui:FindFirstChild("ChatBar", true)
  47. chatBar = chatGui:FindFirstChild("ChatBar", true)
  48.  
  49. do
  50.     local randomstr = function()
  51.         local characters = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"}
  52.         local str = ""
  53.         local length = math.random(12, 32)
  54.    
  55.         for i = 1, length do
  56.             str = str .. characters[math.random(#characters)]
  57.         end
  58.         return str
  59.     end
  60.     task.spawn(function()
  61.         while wait(.1) do
  62.             if chatBar:IsFocused() then
  63.                 chatService:FilterStringForBroadcast(randomstr(), player)
  64.             end
  65.         end
  66.     end)
  67. end
  68.  
  69. local c = function()
  70.     for i = 1, 2 do
  71.         game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/e Hey your cool!", "All")
  72.         game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/e I’m gonna get a drink", "All")
  73.     end
  74. end
  75.  
  76. local old
  77. old = hookmetamethod(game, "__namecall", newcclosure(function(self, ...)
  78.     local method = getnamecallmethod()
  79.     local args = {...}
  80.  
  81.     if method == "FireServer" and self.Name == "SayMessageRequest" and #args == 2 and not checkcaller() then
  82.         local newMessage = args[1]
  83.         for i,v in pairs(custom_chars) do
  84.             local rep = string.gsub(newMessage, i, v .. "⁥")
  85.             newMessage = rep
  86.         end
  87.         newMessage = "" .. newMessage .. default —edit that thingy box
  88.  
  89.         args[1] = newMessage
  90.         coroutine.wrap(c)
  91.         return old(self, unpack(args))
  92.     end
  93.     return old(self, ...)
  94. end))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement