local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("[UPD🎃] Scythe Simulator", "Sentinel") local MainTab = Window:NewTab("Main") local MainSection = MainTab:NewSection("Main Section") local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local EggFrame = player.PlayerGui.MainGui.Frames.EggsFrame.ScrollingFrame local ReplicatedStorage = game:GetService("ReplicatedStorage") local Workspace = game:GetService("Workspace") _G.AutoSwing = false _G.AutoHill = false _G.AutoRebirth = false _G.AutoHatch = false _G.SelectedEgg = nil local EggCost = { Egg1 = 250, Egg2 = 1000, Egg3 = 2500, Egg4 = 5000, Egg5 = 10000, Egg6 = 25000, Egg7 = 50000, Egg8 = 75000, Egg9 = 100000, Egg10 = 125000, Egg11 = 150000, Egg12 = 175000, Egg13 = 200000, Egg14 = 200000, Egg15 = 225000 } local EggDropdown = {} for Name, _ in pairs(EggCost) do local eggTitle = EggFrame:WaitForChild(Name).EggTitle.Text table.insert(EggDropdown, eggTitle) end MainSection:NewToggle("Auto Swing", "Automatically swings for you", function(state) _G.AutoSwing = state while _G.AutoSwing and task.wait(0.1) do if character:FindFirstChildOfClass("Tool") and character.Humanoid.Health > 0 then character:FindFirstChildOfClass("Tool"):Activate() elseif character:FindFirstChild("Humanoid") and character.Humanoid.Health > 0 then local tool = player.Backpack:FindFirstChildOfClass("Tool") if tool then character.Humanoid:EquipTool(tool) end end end end) MainSection:NewToggle("Auto Rebirth", "Automatically rebirth", function(state) _G.AutoRebirth = state while _G.AutoRebirth and task.wait(0.2) do if character.Humanoid.Health > 0 then local playerData = player:FindFirstChild("PlayerData") if playerData and playerData.Strength.Value >= playerData.RebirthRequirement.Value and playerData.CanRebirth.Value then ReplicatedStorage:WaitForChild("RebirthPlayer"):FireServer(false) task.wait(0.1) end end end end) MainSection:NewDropdown("Select Egg", "Select the egg to automatically hatch", EggDropdown, function(currentOption) _G.SelectedEgg = currentOption end) MainSection:NewToggle("Auto Hatch", "Automatically hatch selected egg", function(state) _G.AutoHatch = state while _G.AutoHatch and task.wait(0.2) do if character.Humanoid.Health > 0 then local HatchPet = ReplicatedStorage:WaitForChild("HatchPet") local hasSpace = ReplicatedStorage.CheckSpace:InvokeServer(false, 0, true) for Name, _ in pairs(EggCost) do if EggFrame:WaitForChild(Name).EggTitle.Text == _G.SelectedEgg then if player.leaderstats.Gems.Value >= EggCost[Name] and hasSpace then HatchPet:FireServer(Name, 1, hasSpace) end break end end end end end) MainSection:NewToggle("Auto Hill", "Automatically teleport to bonus area of KOTH", function(state) _G.AutoHill = state while _G.AutoHill and task.wait(0) do if character and character:FindFirstChild("HumanoidRootPart") and character.Humanoid.Health > 0 then for _, descendant in ipairs(Workspace:GetChildren()) do if descendant:IsA("Model") and descendant.Name == "KingOfHill" then local bonusArea = descendant:FindFirstChild("BonusArea") if bonusArea and bonusArea:GetAttribute("Bonus") == 700 then bonusArea.CFrame = character.HumanoidRootPart.CFrame end end task.wait(0) end end end end) player.CharacterAdded:Connect(function(Char) character = Char -- simple fix end)