What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

10x your cash, get the best pet, auto gems open source

Version / Update: v1.0.0
Download / Script Link
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

local Window = Rayfield:CreateWindow({
Name = "Dig to Earth's Core",
LoadingTitle = "Loading System...",
LoadingSubtitle = "by kaba",
ConfigurationSaving = { Enabled = false },
KeySystem = false
})

-- Control Variables
_G.AutoCash = false
_G.AutoGems = false

local MainTab = Window:CreateTab("Main Features", 4483362458)

-- 10x Your Cash (Toggle) - Updated to ID 8
MainTab:CreateToggle({
Name = "10x your cash",
CurrentValue = false,
Flag = "CashToggle",
Callback = function(Value)
_G.AutoCash = Value
if Value then
task.spawn(function()
while _G.AutoCash do
pcall(function()
local ohNumber1 = 8
game:GetService("ReplicatedStorage").Remotes.SpinPrizeEvent:FireServer(ohNumber1)
end)
task.wait(0.1)
end
end)
end
end,
})

-- Auto Gem Farm (Toggle)
MainTab:CreateToggle({
Name = "auto gem farm",
CurrentValue = false,
Flag = "GemToggle",
Callback = function(Value)
_G.AutoGems = Value
if Value then
task.spawn(function()
while _G.AutoGems do
pcall(function()
local ohNumber1 = 5
game:GetService("ReplicatedStorage").Remotes.SpinPrizeEvent:FireServer(ohNumber1)
end)
task.wait(0.1)
end
end)
end
end,
})

-- Get Best Pet (Button)
MainTab:CreateButton({
Name = "get best pet (25k)",
Callback = function()
pcall(function()
local args = {
"Empyreus"
}
game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("PetCageEvent"):FireServer(unpack(args))
end)
end,
})

Rayfield:Notify({
Title = "Script Updated",
Content = "Cash ID changed to 8. Ready to farm!",
Duration = 5
})
[ View More ]
c340af74-b5e1-4996-a045-71de32f74920.webp


Features:10x your cashauto farm gemsget the best pet (25k)made with ai lol
 
Back
Top