Watcher1441

Ligma Hub Script (SOLARA SUPPORT, WORKING 2024)

Aug 25th, 2024
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.27 KB | None | 0 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 = "Small 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 PremiumTab = Window:MakeTab({
  141.     Name = "Premium Scripts",
  142.     Icon = "rbxassetid://6071020687",
  143.     PremiumOnly = false
  144. })
  145.  
  146. local PremiumSection = PremiumTab:AddSection({
  147.     Name = "Premium Scripts"
  148. })
  149.  
  150. PremiumTab: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. PremiumTab: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. --Premium Tab End
  165.  
  166. --Settings Tab--
  167.  
  168. local SettingsTab = Window:MakeTab({
  169.     Name = "Settings",
  170.     Icon = "rbxassetid://4483345998",
  171.     PremiumOnly = false
  172. })
  173.  
  174. local SettingsSection = SettingsTab:AddSection({
  175.     Name = "Settings"
  176. })
  177.  
  178. SettingsSection:AddButton({
  179.     Name = "Remove Ligma Hub",
  180.     Callback = function()
  181.         OrionLib:Destroy()
  182.     end    
  183. })
  184.  
  185. --Settings End--
  186.  
  187. OrionLib:Init() --UI Lib End
Advertisement
Add Comment
Please, Sign In to add comment