local Library = loadstring(game:HttpGetAsync("https://github.com/ActualMasterOogway/Fluent-Renewed/releases/latest/download/Fluent.luau"))() local SaveManager = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/ActualMasterOogway/Fluent-Renewed/master/Addons/SaveManager.luau"))() local InterfaceManager = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/ActualMasterOogway/Fluent-Renewed/master/Addons/InterfaceManager.luau"))() local Window = Library:CreateWindow{ Title = "Dig To Earths Core", SubTitle = "Best Exploit Script for Dig To Earths Core", TabWidth = 160, Size = UDim2.fromOffset(830, 525), Resize = true, MinSize = Vector2.new(470, 380), Acrylic = true, Theme = "Dark", MinimizeKey = Enum.KeyCode.RightShift } local Tabs = { Main = Window:CreateTab{ Title = "Main", Icon = "phosphor-bomb-bold" }, } local Remotes = game:GetService("ReplicatedStorage").Remotes local autoFlags = { DominusPet = false, Spins = false, Cash = false, Money = false, Treasures = false, Pickaxes = false, InfiniteGems = false, } Tabs.Main:CreateButton{ Title = "Spin Dominus Pet", Description = "RNG pls bless me.", Callback = function() Remotes.SpinPrizeEvent:FireServer(4) end } Tabs.Main:CreateButton{ Title = "Get Spins", Description = "do i even need to explain this? just get spins", Callback = function() Remotes.SpinPrizeEvent:FireServer(10) end } Tabs.Main:CreateButton{ Title = "10x Cash", Description = "times your current cash by 10, thats what it does lmao.", Callback = function() Remotes.SpinPrizeEvent:FireServer(8) end } Tabs.Main:CreateButton{ Title = "Get Money", Description = "Gives You Money", Callback = function() Remotes.DigEvent:FireServer("hello", 10) end } local treasures = { "Cauldron", "Cup15", "Shard" } for _, treasure in ipairs(treasures) do Tabs.Main:CreateButton{ Title = "Give " .. treasure, Description = "give treasure", Callback = function() Remotes.TreasureEvent:FireServer(treasure) end } end local pickaxes = { "Admin", "Prince", "Kings" } for _, pickaxe in ipairs(pickaxes) do Tabs.Main:CreateButton{ Title = "Buy " .. pickaxe .. " Pickaxe", Description = "idk why you would want this", Callback = function() Remotes.BuyPickaxeEvent:FireServer(pickaxe) end } end Tabs.Main:CreateButton{ Title = "Infinite Gems", Description = "gives you infinite gems, no more grinding for gems", Callback = function() Remotes.UpgradeEvent:FireServer("Strength", -math.huge) end } local function autoExecute() while true do task.wait(2) if autoFlags.DominusPet then Remotes.SpinPrizeEvent:FireServer(4) end if autoFlags.Spins then Remotes.SpinPrizeEvent:FireServer(10) end if autoFlags.Cash then Remotes.SpinPrizeEvent:FireServer(8) end if autoFlags.Money then Remotes.DigEvent:FireServer("hello", 10) end if autoFlags.Treasures then for _, treasure in ipairs(treasures) do Remotes.TreasureEvent:FireServer(treasure) end end end end task.spawn(autoExecute) local function createToggle(name, flag, title, description) local toggle = Tabs.Main:CreateToggle(name, { Title = title, Description = description, Default = false }) toggle:OnChanged(function(value) autoFlags[flag] = value end) end createToggle("AutoDominusPet", "DominusPet", "Auto Spin Dominus Pet", "Automatically spins for Dominus Pet") createToggle("AutoSpins", "Spins", "Auto Get Spins", "Automatically gets spins") createToggle("AutoCash", "Cash", "Auto 10x Cash", "Automatically multiplies cash by 10") createToggle("AutoMoney", "Money", "Auto Get Money", "Automatically gets money") createToggle("AutoTreasures", "Treasures", "Auto Get Treasures", "Automatically gets all treasures") Window:SelectTab(1)