--[[ WARNING: AUTO SPAM CARS WILL LAG YOU THIS SCRIPT SPAMS 50 CARS AT ONCE TOGGLE IT ON, THEN OFF IMMEDIATELY TO AVOID FREEZING UPDATED V2: ADDED SOME EXEC SUPPORT ]] _G.AutoAddCash = false _G.AutoUpgradeTier = false _G.AutoRebirth = false _G.AutoMysteryBox = false _G.AutoInfinitePotions = false _G.AutoInfiniteMythicPets = false _G.AutoSpamCars = false local ReplicatedStorage = game:GetService("ReplicatedStorage") local Remotes = ReplicatedStorage:WaitForChild("Remotes") Remotes:WaitForChild("NotifsEvent"):FireServer( "shout out to theboywhocried on rscipts!!!", Color3.new(1, 0.4941176474094391, 0.4745098054409027), false, false ) local function addCash() while _G.AutoAddCash do Remotes:WaitForChild("AddValueEvent"):FireServer("Cash", 9999999999999999) task.wait(0.1) end end local function upgradeTier() while _G.AutoUpgradeTier do Remotes:WaitForChild("GemEvent"):FireServer(999999999999999) task.wait(0.1) end end local function autoRebirth() while _G.AutoRebirth do local args = {1, 0, 100} Remotes:WaitForChild("RebirthEvent"):FireServer(unpack(args)) Remotes:WaitForChild("RebirthConfirmEvent"):FireServer(unpack(args)) task.wait(0.1) end end local function autoMysteryBox() while _G.AutoMysteryBox do Remotes:WaitForChild("MysteryBoxEvent"):FireServer() task.wait(0.7) end end local function infinitePotions() while _G.AutoInfinitePotions do local potions = {"Potion1", "Potion2", "Potion3"} for _, potion in ipairs(potions) do Remotes:WaitForChild("BuyPotionEvent"):FireServer(potion, 0) end task.wait(0.1) end end local function infiniteMythicPets() while _G.AutoInfiniteMythicPets do Remotes:WaitForChild("SpinWheelPrizeEvent"):FireServer(4) task.wait(1) end end local function spamCars() if _G.AutoSpamCars then for i = 1, 50 do Remotes:WaitForChild("SpinWheelPrizeEvent"):FireServer(7) task.wait(0.1) end _G.AutoSpamCars = false end end spawn(function() while task.wait(0.1) do if _G.AutoAddCash then addCash() end if _G.AutoUpgradeTier then upgradeTier() end if _G.AutoRebirth then autoRebirth() end if _G.AutoMysteryBox then autoMysteryBox() end if _G.AutoInfinitePotions then infinitePotions() end if _G.AutoInfiniteMythicPets then infiniteMythicPets() end if _G.AutoSpamCars then spamCars() end end end)