ADVERTISEMENTREMOVE ADS
Auto/INF Cash, Rebirth, EXEC SUPPORT UPD
48,216 views

Script Preview
Description
Feature Descriptions:
Auto Add Cash: Continuously adds a large amount of in-game cash.
Auto Upgrade Tier: Repeatedly upgrades the player's tier.
Auto Rebirth: Automates the rebirth process for faster progression.
Auto Mystery Box: Continuously opens mystery boxes.
Infinite Potions: Allows unlimited purchases of specific potions.
Infinite Mythic Pets: Continuously spins for Mythic Pets.
Improvements:
Added support for more executors.
Improved performance with optimized loops.
Cleaner and more readable code structure.
ADVERTISEMENTREMOVE ADS
95 Lines • 2.61 KiB
--[[
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)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS




Comments
Don't work on codex
Don't work on Xeno
@LiamWalter I tested it myself on Xeno, I don't know what to say, man.
Doesn't work, Xeno Solara. It just shows credits