Advertisement
SigmaBoy456

Roblox Advertising spam bot Roblox Script

May 15th, 2024 (edited)
1,572
-4
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.69 KB | None | 0 4
  1. -- Enjoy SpamBot Script Made by Mawin_CK
  2. --READ BEFORE USE DONT SAY I DONT WARN YOU IF YOU DON'T READ USING THIS SCRIPT
  3. --UPDATED RECCMONED PUT 10 MIN SERVERHOP OR MORE TO AVOID DETECTION FROM ROBLOX AND ALSO USE AUTO CLICKER OR SOMETHING THAT MAKE IT LESS SUSPICIOUS OF GETTING CAUGHT BY ROBLOX
  4. --OR ELSE JUST DONT USE SERVERHOP AND DISABLE THE SCRIPT SETTINGS BECAUSE IS RISK GETTING IP BAN FOR A WHILE well if you don't use serverhop setting mean you don't need to worry about getting IP ban for while by anti cheat BC roblox only detect suspicious roblox player that join and leave game rapidly
  5. --turn off teleport settings if game has anti cheat of Stopping you from teleporting
  6. --recommend turning lot of alt account on lot of server to make spam bot Effective if you have good pc to turn on lot of alt account
  7. --Use ANY KIND OF VPN TO BYPASS ROBLOX CLIENT KICK THAT STOPPING YOU FROM JOINING GAME IF YOU STILL GET KICKED CHANGE NEW VPN SERVER
  8. ---WARNING DONT EVER PUT TOO LESS SERVERHOP TIME PUT IT ABOUT 10 MIN OR MORE OR ELSE YOU WILL GET KICKED AND CAN'T PLAY GAME BY ANTI CHEAT ROBLOX
  9. -- Warning: This script only works for basic Roblox games that don't have the modern Roblox chat system.
  10. -- SETTINGS
  11. ---Set some of Setting to False If you dont want something to be active
  12. --ONLY WORK PERFECTLY WITH EXECUTOR THAT HAS AUTO EXECUTE THROUGH FILE OR SAVED SCRIPT
  13. getgenv().settings = {
  14.     AutoChat_Time = 0.1,  -- Time in seconds between each chat message
  15.     AutoChat_Delay = 1.5,  -- Additional delay after each message
  16.     AutoChat = true,  -- Set to true to enable auto chat
  17.     Message = "Wanted DOMNUIS?! follow Mawin_CK on Roblox!💰🤑 Please dont act tough on chat🤑Cus We Had lot of here 💰🤑follow🤑",  -- The message you want to spam in chat
  18.     ServerHop_Time = 1000,  -- Time in seconds to wait before server hopping
  19.     GameID = 5373028495,  -- Replace with the actual game ID
  20.     GameLink = "https://www.roblox.com/games/5373028495/LGBTQ-Hangout",  -- Replace with the actual game link
  21.     Teleport_Delay = 1,  -- Time in seconds between each random teleport
  22. }
  23.  
  24. -- FUNCTION TO SEND CHAT MESSAGE
  25. local function sendChatMessage()
  26.     local chatrem = game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest
  27.     while settings.AutoChat do
  28.         chatrem:FireServer(settings.Message, "All")
  29.         print("Sent Message")
  30.         wait(settings.AutoChat_Delay)
  31.     end
  32. end
  33.  
  34. -- FUNCTION TO TELEPORT TO A RANDOM PLAYER
  35. local function teleportToRandomPlayer()
  36.     local player = game.Players.LocalPlayer
  37.     while true do
  38.         local players = game.Players:GetPlayers()
  39.         if #players > 1 then  -- Ensure there is at least one other player
  40.             local randomPlayer
  41.             repeat
  42.                 randomPlayer = players[math.random(1, #players)]
  43.             until randomPlayer ~= player  -- Ensure the random player is not the local player
  44.            
  45.             local character = player.Character
  46.             local targetCharacter = randomPlayer.Character
  47.             if character and targetCharacter and targetCharacter:FindFirstChild("HumanoidRootPart") then
  48.                 character:MoveTo(targetCharacter.HumanoidRootPart.Position)
  49.                 print("Teleported to " .. randomPlayer.Name)
  50.             end
  51.         end
  52.         wait(settings.Teleport_Delay)
  53.     end
  54. end
  55.  
  56. -- FUNCTION TO SERVER HOP RANDOMLY
  57. local function hop()
  58.     pcall(function()
  59.         local Servers = game.HttpService:JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/" .. settings.GameID .. "/servers/Public?sortOrder=Asc&limit=100"))
  60.         if #Servers.data > 0 then
  61.             local randomServer = Servers.data[math.random(1, #Servers.data)]
  62.             if randomServer.playing < randomServer.maxPlayers then
  63.                 wait(settings.ServerHop_Time)
  64.                 game:GetService('TeleportService'):TeleportToPlaceInstance(settings.GameID, randomServer.id)
  65.             end
  66.         end
  67.     end)
  68. end
  69.  
  70. -- FUNCTION TO MONITOR AND HOP SERVERS
  71. local function monitorAndHop()
  72.     while true do
  73.         hop()
  74.         wait(settings.ServerHop_Time)
  75.     end
  76. end
  77.  
  78. -- Function to restart the script after server hop
  79. local function reinitializeScript()
  80.     if settings.AutoChat then
  81.         task.spawn(sendChatMessage)
  82.     end
  83.     task.spawn(teleportToRandomPlayer)
  84.     task.spawn(monitorAndHop)
  85. end
  86.  
  87. -- MAIN
  88. reinitializeScript()
  89.  
  90. -- Detect when the player is added to the new server and reinitialize the script
  91. game.Players.LocalPlayer.OnTeleport:Connect(function(teleportState)
  92.     if teleportState == Enum.TeleportState.Started then
  93.         wait(1)  -- Wait briefly to ensure the player has loaded into the new server
  94.         reinitializeScript()
  95.     end
  96. end)
  97.  
Advertisement
Comments
  • SigmaBoy456
    340 days
    # text 0.14 KB | 0 0
    1. WARNING AGAIN: DON'T EVER PUT TOO FAST SERVERHOP TIME OR ELSE YOU GETTING DETECTED BY ANTI CHEAT ROBLOX PUT LIKE 1 MIN OR 3 MIN OR MORE THAN THAT
Add Comment
Please, Sign In to add comment
Advertisement