Watcher1441

Ligma Hub Script (SOLARA SUPPORT, UPDATED 2024)

Aug 27th, 2024
915
3
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.59 KB | None | 3 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. OrionLib:MakeNotification({
  4.     Name = "Ligma Hub",
  5.     Content = "Universal Hub With Scripts",
  6.     Image = "rbxassetid://8970015790",
  7.     Time = 5
  8. })
  9.  
  10.  
  11. local Window = OrionLib:MakeWindow({Name = "Ligma Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "Orion"})
  12.  
  13. --Player Tab--
  14.  
  15. local PlayerTab = Window:MakeTab({
  16.     Name = "Player",
  17.     Icon = "rbxassetid://17458438693",
  18.     PremiumOnly = false
  19. })
  20.  
  21. local PlayerSection = PlayerTab:AddSection({
  22.     Name = "Player"
  23. })
  24.  
  25.  
  26. PlayerSection:AddSlider({
  27.     Name = "Walkspeed",
  28.     Min = 16,
  29.     Max = 100,
  30.     Default = 5,
  31.     Color = Color3.fromRGB(255,255,255),
  32.     Increment = 1,
  33.     ValueName = "Walkspeed",
  34.     Callback = function(Value)
  35.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  36.     end    
  37. })
  38.  
  39. PlayerSection:AddSlider({
  40.     Name = "JumpPower",
  41.     Min = 50,
  42.     Max = 250,
  43.     Default = 5,
  44.     Color = Color3.fromRGB(255,255,255),
  45.     Increment = 1,
  46.     ValueName = "JumpPower",
  47.     Callback = function(Value)
  48.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  49.     end    
  50. })
  51.  
  52. PlayerTab:AddButton({
  53.     Name = "Inf Jump",
  54.     Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/y3mdVu9i"))()
  55.             print("Inf Jump Activated")
  56.     end    
  57. })
  58.  
  59. --Player Tab End--
  60.  
  61. --Scripts Tab--
  62.  
  63. local ScriptTab = Window:MakeTab({
  64.     Name = "Scripts",
  65.     Icon = "rbxassetid://7074019216",
  66.     PremiumOnly = false
  67. })
  68.  
  69. local PlayerSection = ScriptTab:AddSection({
  70.     Name = "Scripts"
  71. })
  72.  
  73. ScriptTab:AddButton({
  74.     Name = "Infinite Yield",
  75.     Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  76.             print("Infinite Yield Executed")
  77.     end    
  78. })
  79.  
  80. ScriptTab:AddButton({
  81.     Name = "Nameless Admin",
  82.     Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source'))()
  83.             print("Nameless Admin Executed")
  84.     end    
  85. })
  86.  
  87. ScriptTab:AddButton({
  88.     Name = "Speedy Mode",
  89.     Callback = function() loadstring(game:HttpGet('https://pastebin.com/raw/ZuzcvBFG'))()
  90.             print("Speedy Mode Activated")
  91.     end    
  92. })
  93.  
  94. --Script Tab End--
  95.  
  96. --FPS Tab--
  97.  
  98. local FPSTab = Window:MakeTab({
  99.     Name = "FPS",
  100.     Icon = "rbxassetid://1079452554",
  101.     PremiumOnly = false
  102. })
  103.  
  104. local FPSSection = FPSTab:AddSection({
  105.     Name = "FPS"
  106. })
  107.  
  108. FPSTab:AddButton({
  109.     Name = "ESP",
  110.     Callback = function() loadstring(game:HttpGet('https://pastebin.com/raw/zV20f3Bk'))()
  111.             print("ESP Activated")
  112.     end    
  113. })
  114.  
  115. FPSTab:AddButton({
  116.     Name = "Quotas Hub (OP)",
  117.     Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Insertl/QuotasHub/main/BETAv1.3"))()
  118.             print("Quotas Hub Executed")
  119.     end    
  120. })
  121.  
  122. FPSTab:AddButton({
  123.     Name = "Owl Hub",
  124.     Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt"))();
  125.             print("Owl Hub Executed")
  126.     end    
  127. })
  128.  
  129. FPSTab:AddButton({
  130.     Name = "Super Aimbot (SUPER OP)",
  131.     Callback = function() loadstring(game:HttpGet('https://pastebin.com/raw/neLVDaNn'))()
  132.             print("Aimbot Activated")
  133.     end    
  134. })
  135.  
  136. --FPS Tab End--
  137.  
  138. --Premium Tab--
  139.  
  140. local HubTab = Window:MakeTab({
  141.     Name = "Script Hubs",
  142.     Icon = "rbxassetid://6071020687",
  143.     PremiumOnly = false
  144. })
  145.  
  146. local HubSection = HubTab:AddSection({
  147.     Name = "Script Hub"
  148. })
  149.  
  150. HubTab:AddButton({
  151.     Name = "Pendulum Hub",
  152.     Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Tescalus/Pendulum-Hubs-Source/main/Pendulum%20Hub%20V5.lua"))()
  153.             print("Pendulum Hub Executed")
  154.     end    
  155. })
  156.  
  157. HubTab:AddButton({
  158.     Name = "ChatBot",
  159.     Callback = function() loadstring(game:HttpGet('https://pastebin.com/raw/C3r8s6JB'))()
  160.             print("ChatBot is ONLINE")
  161.     end    
  162. })
  163.  
  164. HubTab:AddButton({
  165.     Name = "Blade Ball Hub",
  166.     Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/FriezGG/Scripts/main/Speed%20X%20BladeBall"))()
  167.             print("Blade Ball Hub Executed")
  168.     end    
  169. })
  170.  
  171. HubTab:AddButton({
  172.     Name = "MM2 Hub",
  173.     Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/Dekos-lgbty/r3th/main/script'))()
  174.             print("MM2 Hub Executed")
  175.     end    
  176. })
  177.  
  178. HubTab:AddButton({
  179.     Name = "Prison Life Hub",
  180.     Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/tbao143/thaibao/main/TbaohubPrisonLife"))()
  181.             print("PL Hub Executed")
  182.     end    
  183. })
  184.  
  185. HubTab:AddButton({
  186.     Name = "Dress To Impress Hub",
  187.     Callback = function() loadstring(game:HttpGet('https://pastefy.app/fR8cxljz/raw'))()
  188.             print("DTI Hub Executed")
  189.     end    
  190. })
  191.  
  192. HubTab:AddButton({
  193.     Name = "Brookhaven Hub",
  194.     Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMae17/NewIceHub/main/Brookhaven"))()
  195.             print("Ice Hub Executed")
  196.     end    
  197. })
  198.  
  199. HubTab:AddButton({
  200.     Name = "Omen Hub (Has Key)",
  201.     Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/mezzopera/Omen-Hub/main/omen_hub.lua"))()
  202.             print("https://linkvertise.com/1171337/get-key-for-omen-hub?o=sharing For Key")
  203.     end    
  204. })
  205.  
  206. --Hubs Tab End
  207.  
  208. --Settings Tab--
  209.  
  210. local SettingsTab = Window:MakeTab({
  211.     Name = "Settings",
  212.     Icon = "rbxassetid://4483345998",
  213.     PremiumOnly = false
  214. })
  215.  
  216. local SettingsSection = SettingsTab:AddSection({
  217.     Name = "Settings"
  218. })
  219.  
  220. SettingsSection:AddButton({
  221.     Name = "Remove Ligma Hub",
  222.     Callback = function()
  223.         OrionLib:Destroy()
  224.     end    
  225. })
  226.  
  227. --Settings End--
  228.  
  229. OrionLib:Init() --UI Lib End
Advertisement
Add Comment
Please, Sign In to add comment