Advertisement
Idgafnab

Roblox Chat Bypass

Jul 13th, 2024 (edited)
1,847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.21 KB | None | 0 0
  1. repeat task.wait() until game:IsLoaded()
  2.  
  3. local TCS = game:GetService("TextChatService")
  4. local CoreGui = game:GetService("CoreGui")
  5. local RStorage = game:GetService("ReplicatedStorage")
  6. local Players = game:GetService("Players")
  7. local TweenService = game:GetService("TweenService")
  8. local HttpService = game:GetService("HttpService")
  9. local UserInputService = game:GetService("UserInputService")
  10.  
  11. local LocalPlayer = Players.LocalPlayer
  12. local PlayerGui = LocalPlayer.PlayerGui
  13.  
  14. local isLegacy = TCS.ChatVersion == Enum.ChatVersion.LegacyChatService
  15. local ChatBar = CoreGui:FindFirstChild("TextBoxContainer", true) or PlayerGui:FindFirstChild("Chat"):FindFirstChild("ChatBar", true)
  16. ChatBar = ChatBar:FindFirstChild("TextBox") or ChatBar
  17.  
  18. local Keywords = {
  19. {"a", "🅰"},
  20. {"b", "🅱"},
  21. {"c", "🅲"},
  22. {"d", "🅳"},
  23. {"e", "🅴"},
  24. {"f", "🅵"},
  25. {"g", "🅶"},
  26. {"h", "🅷"},
  27. {"i", "🅸"},
  28. {"j", "🅹"},
  29. {"k", "🅺"},
  30. {"l", "🅻"},
  31. {"m", "🅼"},
  32. {"n", "🅽"},
  33. {"o", "🅾"},
  34. {"p", "🅿"},
  35. {"q", "🆀"},
  36. {"r", "🆁"},
  37. {"s", "🆂"},
  38. {"t", "🆃"},
  39. {"u", "🆄"},
  40. {"v", "🆅"},
  41. {"w", "🆆"},
  42. {"x", "🆇"},
  43. {"y", "🆈"},
  44. {"z", "🆉"},
  45. {"A", "🅰"},
  46. {"B", "🅱"},
  47. {"C", "🅲"},
  48. {"D", "🅳"},
  49. {"E", "🅴"},
  50. {"F", "🅵"},
  51. {"G", "🅶"},
  52. {"H", "🅷"},
  53. {"I", "🅸"},
  54. {"J", "🅹"},
  55. {"K", "🅺"},
  56. {"L", "🅻"},
  57. {"M", "🅼"},
  58. {"N", "🅽"},
  59. {"O", "🅾"},
  60. {"P", "🅿"},
  61. {"Q", "🆀"},
  62. {"R", "🆁"},
  63. {"S", "🆂"},
  64. {"T", "🆃"},
  65. {"U", "🆄"},
  66. {"V", "🆅"},
  67. {"W", "🆆"},
  68. {"X", "🆇"},
  69. {"Y", "🆈"},
  70. {"Z", "🆉"},
  71. {" ,", "_"},
  72. {" ", ""}
  73. }
  74.  
  75. local Gen = function(Message)
  76. for _, info in Keywords do
  77. local real = info[1]
  78. local bypass = info[2]
  79. Message = Message:gsub(real, bypass)
  80. end
  81. return Message
  82. end
  83.  
  84. local Connection = Instance.new("BindableFunction")
  85.  
  86. for _, c in getconnections(ChatBar.FocusLost) do
  87. c:Disconnect()
  88. end
  89.  
  90. ChatBar.FocusLost:Connect(function(enterPressed)
  91. if enterPressed then
  92. Connection:Invoke(ChatBar.Text)
  93. ChatBar.Text = ""
  94. end
  95. end)
  96.  
  97. Connection.OnInvoke = function(Message)
  98. Message = Gen(Message)
  99. if isLegacy then
  100. local ChatRemote = RStorage:FindFirstChild("SayMessageRequest", true)
  101. ChatRemote:FireServer(Message, "All")
  102. else
  103. local Channel = TCS.TextChannels.RBXGeneral
  104. Channel:SendAsync(Message)
  105. end
  106. end
  107.  
  108. local NotifyModule = {}
  109.  
  110. if not NotifyGui then
  111. getgenv().NotifyGui = Instance.new("ScreenGui")
  112. getgenv().Template = Instance.new("TextLabel")
  113.  
  114. if syn then
  115. if gethui then
  116. gethui(NotifyGui)
  117. else
  118. syn.protect_gui(NotifyGui)
  119. end
  120. end
  121.  
  122. NotifyGui.Name = "Notification"
  123. NotifyGui.Parent = CoreGui
  124.  
  125. Template.Name = "Template"
  126. Template.Parent = NotifyGui
  127. Template.AnchorPoint = Vector2.new(.5, .5)
  128. Template.BackgroundTransparency = 1
  129. Template.BorderSizePixel = 0
  130. Template.Position = UDim2.new(.5, 0, 1.5, 0)
  131. Template.Size = UDim2.new(.8, 0, .1, 0)
  132. Template.Font = Enum.Font.Code
  133. Template.Text = ""
  134. Template.TextSize = 30
  135. Template.TextWrapped = true
  136. end
  137.  
  138. local Tween = function(Object, Time, Style, Direction, Property)
  139. return TweenService:Create(Object, TweenInfo.new(Time, Enum.EasingStyle[Style], Enum.EasingDirection[Direction]), Property)
  140. end
  141.  
  142. function NotifyModule:Notify(Text, Duration)
  143. task.spawn(function()
  144. local Clone = Template:Clone()
  145. Clone.Name = "ClonedNotification"
  146. Clone.Parent = NotifyGui
  147. Clone.Text = Text
  148. Clone.TextColor3 = Color3.fromRGB(0, 0, 0)
  149.  
  150. local UIStroke = Instance.new("UIStroke")
  151. UIStroke.Parent = Clone
  152. UIStroke.Thickness = 1
  153. UIStroke.Transparency = 0
  154.  
  155. if not Duration or Duration == nil then
  156. Duration = 10
  157. end
  158.  
  159. local FinalPosition = 0
  160.  
  161. for _, x in next, NotifyGui:GetChildren() do
  162. if x.Name ~= "Template" then
  163. FinalPosition += .125
  164. end
  165. end
  166.  
  167. local TweenPos = Tween(Clone, 1, "Quart", "InOut", {Position = UDim2.new(.5, 0, .95 - FinalPosition, 0)})
  168. TweenPos:Play()
  169. TweenPos.Completed:wait()
  170.  
  171. wait(Duration)
  172.  
  173. TweenPos = Tween(Clone, 1, "Quart", "InOut", {Position = UDim2.new(.5, 0, 1.5, 0)})
  174. TweenPos:Play()
  175. TweenPos.Completed:wait()
  176.  
  177. Clone:Destroy()
  178. end)
  179. end
  180.  
  181. NotifyModule:Notify("Emoji Chat Bypasser Made By A PERSON", 5)
  182.  
  183. local Connection
  184. Connection = UserInputService.InputBegan:Connect(function(Input, GPE)
  185. if GPE or Input.KeyCode ~= Enum.KeyCode.Zero then return end
  186.  
  187. NotifyModule:Notify("Ty")
  188. setclipboard("Thanks For Using My Script")
  189. Connection:Disconnect()
  190. end)
  191.  
  192. loadstring(game:HttpGet("https://raw.githubusercontent.com/AnthonyIsntHere/anthonysrepository/main/scripts/AntiChatLogger.lua", true))()
  193.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement