local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Dig to Earth's Core", LoadingTitle = "Loading System...", LoadingSubtitle = "by makeautomataion", 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 })