ADVERTISEMENTREMOVE ADS
Game icon

Auto/INF Cash, Rebirth, Mystery Boxes & More

Merge for SPEED!
9 months ago
Script preview thumbnail
Script Preview

Description

  • Auto Add Cash: Continuously adds an extreme amount of in-game cash.

  • Auto Upgrade Tier: Repeatedly upgrades the player's tier.

  • Auto Rebirth: Automates the rebirth process for progression.

  • Auto Mystery Box: Continuously opens mystery boxes.

  • Infinite Potions: Purchases an unlimited number of specific potions.

  • Infinite Mythic Pets: Continuously spins for Mythic Pets.

  • Spam Cars: Spawns cars every using a spin wheel event.

Tested with

ADVERTISEMENTREMOVE ADS
105 Lines • 3.21 KiB
Raw
--[[
STRONG WARNING AUTOSPAM CARS WILL LAG YOU NO MATTER WHAT
IT'S SPAMMING 50 CARS AT ONCE TOGGLE IT ON AND TOGGLE OFF INSTANTLY
IT WILL FREEZE YOU FOR A LITTLE BIT THEN GO BACK TO NORMAL
]]--
_G.AutoAddCash = false
_G.AutoUpgradeTier = false
_G.AutoRebirth = false
_G.AutoMysteryBox = false
_G.AutoInfinitePotions = false
_G.AutoInfiniteMythicPets = false
_G.AutoSpamCars = false
local args = {
[1] = "shout out to theboywhocried on rscipts!!!",
[2] = Color3.new(1, 0.4941176474094391, 0.4745098054409027),
[3] = false,
[4] = false
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("NotifsEvent"):FireServer(unpack(args))
local function addCash()
while _G.AutoAddCash do
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddValueEvent")
:FireServer("Cash", 9999999999999999)
wait(0.1)
end
end
local function upgradeTier()
while _G.AutoUpgradeTier do
local args = {
[1] = 999999999999999
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("GemEvent"):FireServer(unpack(args))
wait(0.1)
end
end
local function autoRebirth()
while _G.AutoRebirth do
local args = {1, 0, 100}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("RebirthEvent"):FireServer(unpack(args))
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("RebirthConfirmEvent"):FireServer(unpack(args))
wait(0.1)
end
end
local function autoMysteryBox()
while _G.AutoMysteryBox do
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("MysteryBoxEvent"):FireServer()
wait(0.7)
end
end
local function infinitePotions()
while _G.AutoInfinitePotions do
local potions = {"Potion1", "Potion2", "Potion3"}
for _, potion in ipairs(potions) do
local args = {
[1] = potion,
[2] = 0
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyPotionEvent"):FireServer(unpack(args))
end
wait(0.1)
end
end
local function infiniteMythicPets()
while _G.AutoInfiniteMythicPets do
local args = {
[1] = 4
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpinWheelPrizeEvent"):FireServer(unpack(args))
wait(1)
end
end
local function spamCars()
while _G.AutoSpamCars do
local args = {
[1] = 7
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpinWheelPrizeEvent"):FireServer(unpack(args))
wait(4)
end
end
spawn(function()
while 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

Comments

2 comments
to add a comment
Ir

Xeno Script don`t work

0
0
th

@IrisTi sorry will try and release an update for more compatibility!

0
0
ADVERTISEMENTREMOVE ADS