The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Breaking Simulator script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 14



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Breaking Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7. --Toggle
  8. b:Toggle("AutoClick",function(bool)
  9.     shared.toggle = bool
  10.     AutoClick = bool
  11. end)
  12.  
  13. b:Toggle("AutoSell",function(bool)
  14.     shared.toggle = bool
  15.     AutoSell = bool
  16. end)
  17.  
  18. f:Toggle("Objects",function(bool)
  19.     shared.toggle = bool
  20.     Objects = bool
  21. end)
  22.  
  23. f:Toggle("Storage",function(bool)
  24.     shared.toggle = bool
  25.     Storage = bool
  26. end)
  27.  
  28. e:Toggle("AntiAfk",function(bool)
  29.     shared.toggle = bool
  30.     AntiAfk = bool
  31. end)
  32. --Credits
  33. u:Button("maxgat5#8395",function()
  34.     setclipboard("maxgat5#8395")
  35. end)
  36.  
  37. u:Button("Discrod Server",function()
  38.     setclipboard("https://discord.gg/K4txdRSVfq")
  39. end)
  40.  
  41. while wait() do
  42.     if Objects == true then
  43.         for i,v in pairs(game:GetService("ReplicatedStorage").BreakableObjects:GetChildren()) do
  44.                 game:GetService("ReplicatedStorage").Events.BuyItemEventFunction:InvokeServer("Objects",i)
  45.                 game:GetService("ReplicatedStorage").Events.EquipItemEventFunction:InvokeServer("Objects",i)
  46.         end
  47.     end
  48.    
  49.     if Storage == true then
  50.         for i,v in pairs(game:GetService("ReplicatedStorage").StorageObjects:GetChildren()) do
  51.                 game:GetService("ReplicatedStorage").Events.BuyItemEventFunction:InvokeServer("Storage",i)
  52.                 game:GetService("ReplicatedStorage").Events.EquipItemEventFunction:InvokeServer("Storage",i)
  53.         end
  54.     end
  55.    
  56.     if AutoClick == true then
  57.         game:GetService("ReplicatedStorage").Events.ClickedEventFunction:InvokeServer()
  58.         wait(game:GetService("Players").LocalPlayer.PlayerNumberData.SmashSpeed.Value - 1)
  59.     end
  60.    
  61.     if AutoSell == true then
  62.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").SellPlace.CFrame.Position + Vector3.new(0,0,100))
  63.         wait(.1)
  64.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").SellPlace.CFrame.Position + Vector3.new(0,0,0))
  65.         wait(.1)
  66.     end
  67.    
  68.     if AntiAfk == true then
  69.         local bb=game:service'VirtualUser'
  70.         bb:CaptureController()
  71.         bb:ClickButton2(Vector2.new())
  72.     end
  73. end