--Script Made By grem hill #8686 --DM for questions --Currently Supports The Following Games | Lifting Simulator, Tapping Legends if game.PlaceId == 8750997647 then --tapping legends local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "SiegeHub | [❄️FROST!] ⚡ Tapping Legends X", IntroText = "Siege Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "SiegeHubConfig"}) --Values _G.autoTap = true _G.autoRebirth = true _G.autoHatch = true _G.selectEgg = "Basic Egg" --Functions -- Taps as much as possible function autoTapFunction() while _G.autoTap == true do game:GetService("ReplicatedStorage").Remotes.Tap:FireServer() wait(0.001) end end --Infintly Rebirths when click amount is enough function autoRebirthFunction() while _G.autoRebirth == true do game:GetService("ReplicatedStorage").Remotes.Rebirth:FireServer(1) wait(0.001) end end function autoHatchFunction() while _G.autoHatch == true do game:GetService("ReplicatedStorage").Remotes.BuyEgg:InvokeServer(_G.selectEgg,1) wait(0.0001) end end function BestPetFunction() game:GetService("ReplicatedStorage").Remotes.EquipBest:InvokeServer() end --Tabs local FarmTab = Window:MakeTab({ Name = "AutoFarm", Icon = "rbxassetid://4483345998", PremiumOnly = false }) local EggTab = Window:MakeTab({ Name = "Pet Cheats", Icon = "rbxassetid://4483345998", PremiumOnly = false }) --Toggles --Farming Toggles FarmTab:AddToggle({ Name = "Auto Tap", Default = false, Callback = function(Value) _G.autoTap = Value autoTapFunction() end }) FarmTab:AddToggle({ Name = "Auto Rebirth", Default = false, Callback = function(Value) _G.autoRebirth = Value autoRebirthFunction() end }) --Pet Toggles EggTab:AddToggle({ Name = "Auto Hatch Eggs (Stand Near Egg To Hatch )", Default = false, Callback = function(Value) _G.autoHatch = Value autoHatchFunction() end }) --Dropdowns EggTab:AddDropdown({ Name = "Egg Select", Default = "Basic Egg", Options = {"Basic Egg", "Rare Egg"}, Callback = function(Value) _G.selectEgg = Value print(_G.selectEgg) end }) EggTab:AddButton({ Name = "Equip Best Pets", Callback = function() BestPetFunction() end }) elseif game.PlaceId == 3652625463 then --Lifting Simulator local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "SiegeHub | Lifting Simulator", IntroText = "Siege Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "SiegeHubConfig"}) --Values _G.autoLift = true _G.autoSell = true --Functions function autoLiftFunction() while _G.autoLift == true do game:GetService("ReplicatedStorage").RemoteEvent:FireServer({"GainMuscle"}) wait(0.001) end end function autoSellFunction() while _G.autoSell == true do game:GetService("ReplicatedStorage").RemoteEvent:FireServer({"SellMuscle"}) wait(0.001) end end function killAllFunction() for _,c in pairs(game.Players:GetChildren()) do c.Character.Humanoid.Health = 0 end end --Tabs local MainTab = Window:MakeTab({ Name = "Main", Icon = "rbxassetid://4483345998", PremiumOnly = false }) --Buttons/Tabs/Dropdowns MainTab:AddToggle({ Name = "Auto Lift", Default = false, Callback = function(Value) _G.autoLift = Value autoLiftFunction() end }) MainTab:AddToggle({ Name = "Auto Sell", Default = false, Callback = function(Value) _G.autoSell = Value autoSellFunction() end }) MainTab:AddButton({ Name = "Kill All", Callback = function() killAllFunction() end }) MainTab:AddButton({ Name = "Open Buy GUI", Callback = function() game:GetService("Players").LocalPlayer.PlayerGui["Main_Gui"]["UpgradeMenu_Frame"].Visible = true end }) MainTab:AddSlider({ Name = "Movement Speed", Min = 16, Max = 200, Default = 16, Color = Color3.fromRGB(255,255,255), Increment = 1, ValueName = "Movement Speed", Callback = function(Value) while true do game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value wait(0.001) end end }) end OrionLib:Init()