Gag scripts headicon

MB hub source leak n key system deleted

30 views
MB hub source leak n key system deleted
Free​Keyless​Mobile Friendly​

Description

  • inf gold
  • auto buy characters
  • auto buy speels
--[[<br />
	WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!<br />
]]<br />
<br />
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()<br />
<br />
local farmGoldRunning = false<br />
local troopLoops = {}<br />
local spellLoops = {}<br />
<br />
<br />
local Window = Rayfield:CreateWindow({<br />
   Name = "Mb Hub src leak -key system deleted",<br />
   LoadingTitle = "loading",<br />
   LoadingSubtitle = "by thirst (darkdex)",<br />
   ConfigurationSaving = {<br />
      Enabled = true,<br />
      FolderName = nil,<br />
      FileName = "MbHub"<br />
   },<br />
   Discord = {<br />
      Enabled = false,<br />
      Invite = "GSTfEVvwDK",<br />
      RememberJoins = true<br />
   },<br />
   KeySystem = false<br />
})<br />
<br />
local ReplicatedStorage = game:GetService("ReplicatedStorage")<br />
<br />
local MainTab = Window:CreateTab("Main", 4483362458)<br />
<br />
local FarmSection = MainTab:CreateSection("Gold Farm")<br />
<br />
local FarmGoldButton = MainTab:CreateButton({<br />
   Name = "Farm Gold",<br />
   Callback = function()<br />
      farmGoldRunning = true<br />
      spawn(function()<br />
         while farmGoldRunning do<br />
            pcall(function()<br />
               local DistanceWalked = ReplicatedStorage.Remotes.DistanceWalked<br />
               DistanceWalked:FireServer(150, 1e+104, 0)<br />
            end)<br />
            wait(0.1)<br />
         end<br />
      end)<br />
      Rayfield:Notify({<br />
         Title = "Farm Gold",<br />
         Content = "Gold farming started!",<br />
         Duration = 3,<br />
         Image = 4483362458<br />
      })<br />
   end,<br />
})<br />
<br />
local StopFarmButton = MainTab:CreateButton({<br />
   Name = "Stop Farm",<br />
   Callback = function()<br />
      farmGoldRunning = false<br />
      Rayfield:Notify({<br />
         Title = "Farm Gold",<br />
         Content = "Gold farming stopped!",<br />
         Duration = 3,<br />
         Image = 4483362458<br />
      })<br />
   end,<br />
})<br />
<br />
local TroopsTab = Window:CreateTab("Buy Troops", 4483362458)<br />
<br />
local function createTroopButton(name, itemName)<br />
   local running = false<br />
   <br />
   TroopsTab:CreateButton({<br />
      Name = "Auto Buy " .. name .. " (ABT Stock)",<br />
      Callback = function()<br />
         running = true<br />
         troopLoops[itemName] = true<br />
         spawn(function()<br />
            while troopLoops[itemName] do<br />
               pcall(function()<br />
                  local PurchaseItem = ReplicatedStorage.Remotes.PurchaseItem<br />
                  PurchaseItem:FireServer(itemName, "Troops")<br />
               end)<br />
               wait(0.1)<br />
            end<br />
         end)<br />
         Rayfield:Notify({<br />
            Title = "Auto Buy",<br />
            Content = name .. " buying started!",<br />
            Duration = 3,<br />
            Image = 4483362458<br />
         })<br />
      end,<br />
   })<br />
   <br />
   TroopsTab:CreateButton({<br />
      Name = "Stop " .. name,<br />
      Callback = function()<br />
         troopLoops[itemName] = false<br />
         Rayfield:Notify({<br />
            Title = "Auto Buy",<br />
            Content = name .. " buying stopped!",<br />
            Duration = 3,<br />
            Image = 4483362458<br />
         })<br />
      end,<br />
   })<br />
end<br />
<br />
createTroopButton("Swordsman", "Swordsman")<br />
createTroopButton("Archer", "Archer")<br />
createTroopButton("Rookie Commander", "Rookie Commander")<br />
createTroopButton("Witch", "Witch")<br />
createTroopButton("Crossbow", "Crossbow")<br />
createTroopButton("Healer", "Healer")<br />
createTroopButton("Wizard", "Wizard")<br />
createTroopButton("Spearman", "Spearman")<br />
createTroopButton("Balloon", "Balloon")<br />
<br />
local SpellsTab = Window:CreateTab("Auto Buy Spells", 4483362458)<br />
<br />
local function createSpellButton(name, itemName)<br />
   SpellsTab:CreateButton({<br />
      Name = "Auto Buy " .. name .. " (ABT Stock)",<br />
      Callback = function()<br />
         spellLoops[itemName] = true<br />
         spawn(function()<br />
            while spellLoops[itemName] do<br />
               pcall(function()<br />
                  local PurchaseItem = ReplicatedStorage.Remotes.PurchaseItem<br />
                  PurchaseItem:FireServer(itemName, "Spells")<br />
               end)<br />
               wait(0.1)<br />
            end<br />
         end)<br />
         Rayfield:Notify({<br />
            Title = "Auto Buy",<br />
            Content = name .. " buying started!",<br />
            Duration = 3,<br />
            Image = 4483362458<br />
         })<br />
      end,<br />
   })<br />
   <br />
   SpellsTab:CreateButton({<br />
      Name = "Stop " .. name,<br />
      Callback = function()<br />
         spellLoops[itemName] = false<br />
         Rayfield:Notify({<br />
            Title = "Auto Buy",<br />
            Content = name .. " buying stopped!",<br />
            Duration = 3,<br />
            Image = 4483362458<br />
         })<br />
      end,<br />
   })<br />
end<br />
<br />
createSpellButton("Freeze", "Freeze")<br />
createSpellButton("Fireball", "Fireball")<br />
createSpellButton("Heal", "Heal")<br />
createSpellButton("Rage", "Rage")<br />
createSpellButton("Poison", "Poison")<br />
createSpellButton("Earth", "Earth")<br />
createSpellButton("Lightning", "Lightning")<br />
createSpellButton("Arthurs Sword", "Arthurs Sword")<br />
<br />
local DiscordTab = Window:CreateTab("Discord Server", 4483362458)<br />
<br />
DiscordTab:CreateButton({<br />
   Name = "Join Our Discord (Copy)",<br />
   Callback = function()<br />
      setclipboard("https://discord.gg/GSTfEVvwDK")<br />
      Rayfield:Notify({<br />
         Title = "Discord",<br />
         Content = "Discord link copied to clipboard!",<br />
         Duration = 5,<br />
         Image = 4483362458<br />
      })<br />
   end,<br />
})<br />
<br />
Rayfield:Notify({<br />
   Title = "Mb Hub Crack-Leak",<br />
   Content = "Successfully loaded",<br />
   Duration = 5,<br />
   Image = 4483362458<br />
})

Similar Scripts

Leave a Comment