Advertisement
Griffiedd

Siege Hub | Multi-Game Script

Dec 11th, 2022 (edited)
3,304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.48 KB | Gaming | 0 0
  1. --Script Made By grem hill #8686
  2. --DM for questions
  3. --Currently Supports The Following Games | Lifting Simulator, Tapping Legends
  4.  
  5.  
  6.  
  7. if game.PlaceId == 8750997647 then --tapping legends
  8.     local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  9.     local Window = OrionLib:MakeWindow({Name = "SiegeHub | [❄️FROST!] ⚡ Tapping Legends X", IntroText = "Siege Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "SiegeHubConfig"})
  10.     --Values
  11.     _G.autoTap = true
  12.     _G.autoRebirth = true
  13.     _G.autoHatch = true
  14.     _G.selectEgg = "Basic Egg"
  15.  
  16.  
  17.     --Functions
  18.  
  19.     -- Taps as much as possible
  20.     function autoTapFunction()
  21.         while _G.autoTap == true do
  22.             game:GetService("ReplicatedStorage").Remotes.Tap:FireServer()
  23.             wait(0.001)
  24.         end
  25.     end
  26.  
  27.     --Infintly Rebirths when click amount is enough
  28.     function autoRebirthFunction()
  29.         while _G.autoRebirth == true do
  30.             game:GetService("ReplicatedStorage").Remotes.Rebirth:FireServer(1)
  31.             wait(0.001)
  32.         end
  33.     end
  34.  
  35.     function autoHatchFunction()
  36.         while _G.autoHatch == true do
  37.             game:GetService("ReplicatedStorage").Remotes.BuyEgg:InvokeServer(_G.selectEgg,1)
  38.             wait(0.0001)
  39.         end
  40.     end
  41.  
  42.     function BestPetFunction()
  43.         game:GetService("ReplicatedStorage").Remotes.EquipBest:InvokeServer()
  44.     end
  45.  
  46.  
  47.     --Tabs
  48.     local FarmTab = Window:MakeTab({
  49.         Name = "AutoFarm",
  50.         Icon = "rbxassetid://4483345998",
  51.         PremiumOnly = false
  52.     })
  53.  
  54.     local EggTab = Window:MakeTab({
  55.         Name = "Pet Cheats",
  56.         Icon = "rbxassetid://4483345998",
  57.         PremiumOnly = false
  58.     })
  59.  
  60.     --Toggles
  61.  
  62.     --Farming Toggles
  63.     FarmTab:AddToggle({
  64.         Name = "Auto Tap",
  65.         Default = false,
  66.         Callback = function(Value)
  67.             _G.autoTap = Value
  68.             autoTapFunction()
  69.  
  70.  
  71.         end    
  72.     })
  73.  
  74.     FarmTab:AddToggle({
  75.         Name = "Auto Rebirth",
  76.         Default = false,
  77.         Callback = function(Value)
  78.             _G.autoRebirth = Value
  79.             autoRebirthFunction()
  80.  
  81.  
  82.         end    
  83.     })
  84.  
  85.     --Pet Toggles
  86.  
  87.     EggTab:AddToggle({
  88.         Name = "Auto Hatch Eggs (Stand Near Egg To Hatch    )",
  89.         Default = false,
  90.         Callback = function(Value)
  91.             _G.autoHatch = Value
  92.             autoHatchFunction()
  93.  
  94.         end    
  95.     })
  96.  
  97.  
  98.     --Dropdowns
  99.  
  100.     EggTab:AddDropdown({
  101.         Name = "Egg Select",
  102.         Default = "Basic Egg",
  103.         Options = {"Basic Egg", "Rare Egg"},
  104.         Callback = function(Value)
  105.             _G.selectEgg = Value
  106.             print(_G.selectEgg)
  107.  
  108.         end    
  109.     })
  110.  
  111.     EggTab:AddButton({
  112.         Name = "Equip Best Pets",
  113.         Callback = function()
  114.                 BestPetFunction()
  115.         end    
  116.     })
  117.  
  118. elseif game.PlaceId == 3652625463 then --Lifting Simulator
  119.     local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  120.     local Window = OrionLib:MakeWindow({Name = "SiegeHub | Lifting Simulator", IntroText = "Siege Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "SiegeHubConfig"})
  121.     --Values
  122.     _G.autoLift = true
  123.     _G.autoSell = true
  124.  
  125.     --Functions
  126.  
  127.     function autoLiftFunction()
  128.         while _G.autoLift == true do
  129.             game:GetService("ReplicatedStorage").RemoteEvent:FireServer({"GainMuscle"})
  130.             wait(0.001)
  131.          end
  132.  
  133.     end
  134.  
  135.     function autoSellFunction()
  136.         while _G.autoSell == true do
  137.             game:GetService("ReplicatedStorage").RemoteEvent:FireServer({"SellMuscle"})
  138.             wait(0.001)
  139.          end
  140.  
  141.     end
  142.  
  143.     function killAllFunction()
  144.         for _,c in pairs(game.Players:GetChildren()) do
  145.             c.Character.Humanoid.Health = 0
  146.             end
  147.  
  148.     end
  149.  
  150.  
  151.  
  152.  
  153.     --Tabs
  154.     local MainTab = Window:MakeTab({
  155.         Name = "Main",
  156.         Icon = "rbxassetid://4483345998",
  157.         PremiumOnly = false
  158.     })
  159.  
  160.     --Buttons/Tabs/Dropdowns
  161.  
  162.     MainTab:AddToggle({
  163.         Name = "Auto Lift",
  164.         Default = false,
  165.         Callback = function(Value)
  166.             _G.autoLift = Value
  167.             autoLiftFunction()
  168.         end    
  169.     })
  170.  
  171.     MainTab:AddToggle({
  172.         Name = "Auto Sell",
  173.         Default = false,
  174.         Callback = function(Value)
  175.             _G.autoSell = Value
  176.             autoSellFunction()
  177.         end    
  178.     })
  179.  
  180.     MainTab:AddButton({
  181.         Name = "Kill All",
  182.         Callback = function()
  183.                   killAllFunction()
  184.           end    
  185.     })
  186.  
  187.     MainTab:AddButton({
  188.         Name = "Open Buy GUI",
  189.         Callback = function()
  190.             game:GetService("Players").LocalPlayer.PlayerGui["Main_Gui"]["UpgradeMenu_Frame"].Visible = true
  191.           end    
  192.     })
  193.  
  194.     MainTab:AddSlider({
  195.         Name = "Movement Speed",
  196.         Min = 16,
  197.         Max = 200,
  198.         Default = 16,
  199.         Color = Color3.fromRGB(255,255,255),
  200.         Increment = 1,
  201.         ValueName = "Movement Speed",
  202.         Callback = function(Value)
  203.             while true do
  204.             game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  205.             wait(0.001)
  206.             end
  207.         end    
  208.     })
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216. end
  217. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement