if game:GetService("CoreGui"):FindFirstChild("ToraScript") then game:GetService("CoreGui").ToraScript:Destroy() end local Tora = loadstring(game:HttpGet("https://raw.githubusercontent.com/liebertsx/Tora-Library/main/src/librarynew", true))() local Main = Tora:CreateWindow("Dig Grandma's Backyard") local ESP = Tora:CreateWindow("Items ESP") Main:AddToggle({ text = "Fast Dig", callback = function(state) _G.FastDig = state if state then spawn(function() while _G.FastDig do task.wait() pcall(function() local root = game.Players.LocalPlayer.Character.HumanoidRootPart game:GetService("ReplicatedStorage").Remotes.RemoteEvents.RequestDig:FireServer( root.Position - Vector3.new(0, 3, 0), Vector3.new(0, -1, 0) ) end) end end) end end }) local function autoCollect(rarity, flag) Main:AddToggle({ text = "Find Items ("..rarity..")", callback = function(on) _G[flag] = on if on then spawn(function() while _G[flag] do task.wait() pcall(function() local root = game.Players.LocalPlayer.Character.HumanoidRootPart local oldCFrame = root.CFrame for _, v in workspace.MinePrefab:GetDescendants() do if v.Name == "OreRarityLabel" and v.Text == rarity and v.Parent.Parent.Parent:FindFirstChild("ProximityPrompt") and v.Parent.Parent.Parent.ProximityPrompt.Enabled then local ore = v.Parent.Parent.Parent root.CFrame = ore.CFrame task.wait(0.2) fireproximityprompt(ore.ProximityPrompt) task.wait(0.2) root.CFrame = oldCFrame task.wait(0.2) end end end) end end) end end }) end autoCollect("Mythic", "Mythic") autoCollect("Relic", "Relic") autoCollect("Secret", "Secret") Main:AddButton({ text = "Find Cookie", callback = function() local cookie = workspace.MinePrefab:FindFirstChild("Cookie") if cookie then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = cookie:GetPivot() end end }) Main:AddLabel({text = "YouTube: Tora IsMe"}) local function makeESP(rarity) ESP:AddToggle({ text = rarity.." ESP", callback = function(on) for _, gui in workspace.MinePrefab:GetDescendants() do if gui.Name == "OreDataGuiPrefab" and gui:IsA("BillboardGui") and gui:FindFirstChild("MainFrame") and gui.MainFrame:FindFirstChild("OreRarityLabel") and gui.MainFrame.OreRarityLabel.Text == rarity then if on then gui.Enabled = true gui.MaxDistance = math.huge gui.Size = UDim2.fromOffset(200, 50) gui.DistanceLowerLimit = 0 gui.DistanceUpperLimit = 0 gui.StudsOffsetWorldSpace = Vector3.new(0,0,0) gui.MainFrame.OreRarityLabel.TextScaled = false gui.MainFrame.OreRarityLabel.TextSize = 20 else gui.Enabled = false gui.MaxDistance = 100 gui.Size = UDim2.new(0,100,0,25) gui.DistanceLowerLimit = 0 gui.DistanceUpperLimit = 100 gui.MainFrame.OreRarityLabel.TextScaled = true gui.MainFrame.OreRarityLabel.TextSize = 14 end end end end }) end makeESP("Mythic") makeESP("Relic") makeESP("Secret") Tora:Init()