local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))() local UI = Material.Load({ Title = "Into Minions", Style = 1, SizeX = 300, SizeY = 300, Theme = "Dark", ColorOverrides = { MainFrame = Color3.fromRGB(2, 2, 2) } }) local Page = UI.New({ Title = "Into Minions" }) Page.Button({ Text = "Cart Spam", Callback = function() _G.Loopname = true while _G.Loopname do wait(0.01) fireclickdetector(game:GetService("Workspace").Cart.Regen.Click) end end }) Page.Button({ Text = "SpeedAllCarts", Callback = function() _G.Loopname = true while _G.Loopname do wait(0.1) for i,v in pairs(game.Workspace.Cart:GetDescendants()) do if v:FindFirstChild("Up") then fireclickdetector(v.Up.Click) end end end end }) Page.Button({ Text = "SlowAllCarts", Callback = function() _G.Loopname = true while _G.Loopname do wait(0.1) for i,v in pairs(game.Workspace.Cart:GetDescendants()) do if v:FindFirstChild("Down") then fireclickdetector(v.Down.Click) end end end end }) Page.Button({ Text = "Stop/Go troll", Callback = function() _G.Loopname = true while _G.Loopname do wait(0.1) for i,v in pairs(game.Workspace.Cart:GetDescendants()) do if v:FindFirstChild("On") then fireclickdetector(v.On.Click) end end end end }) Page.Button({ Text = "Stop all loops", Callback = function() _G.Loopname = false while _G.Loopname do wait(0.1) for i,v in pairs(game.Workspace.Cart:GetDescendants()) do if v:FindFirstChild("On") then fireclickdetector(v.On.Click) for i,v in pairs(game.Workspace.Cart:GetDescendants()) do if v:FindFirstChild("Down") then fireclickdetector(v.Down.Click) for i,v in pairs(game.Workspace.Cart:GetDescendants()) do if v:FindFirstChild("Up") then fireclickdetector(v.Up.Click) fireclickdetector(game:GetService("Workspace").Cart.Regen.Click) end end end end end end end end })