Advertisement
Guest User

SOLAR HUB

a guest
Nov 25th, 2022
1,414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("SOLAR", "Ocean")
  3.  
  4. -- MAIN
  5. local Main = Window:NewTab("Main")
  6. local MainSection = Main:NewSection("Main")
  7.  
  8.  
  9. MainSection:NewButton("Fling", "Press E to start Flinging!", function()
  10. loadstring(game:HttpGet("https://pastebin.com/raw/9CHyxt9g"))()
  11. end)
  12.  
  13. MainSection:NewToggle("God", "Makes You Fast And jump high!", function(state)
  14. if state then
  15. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 130
  16. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 130
  17. else
  18. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  19. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  20. end
  21. end)
  22.  
  23. MainSection:NewButton("infinte Yield", "Press The Button To open Infinte Yield!", function()
  24. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  25. end)
  26.  
  27. MainSection:NewButton("Owl Hub", "Owl Hub is A Aimbot Silent Aim Wall Bang Scirpt!", function()
  28. loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt"))();
  29. end)
  30.  
  31.  
  32. -- LOCAL PLAYER
  33. local Player = Window:NewTab("Player")
  34. local PlayerSection = Player:NewSection("Player")
  35.  
  36. PlayerSection:NewSlider("WalkSpeed", "it makes you go fast", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  37. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  38. end)
  39.  
  40. PlayerSection:NewSlider("JumpPower", "it makes you Jump High", 400, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  41. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  42. end)
  43.  
  44. PlayerSection:NewButton("Reset W/J", "Resets the Values of Walkspeed/JumpPower", function()
  45. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  46. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  47. end)
  48.  
  49. --Others
  50. local Scirpt = Window:NewTab("Scirpt")
  51. local ScirptSection = Scirpt:NewSection("Scirpt")
  52.  
  53. ScirptSection:NewButton("ScreenShare", "Screenshares your booth! | Rate My Avatar", function()
  54. loadstring(game:HttpGet(("https://pastebin.com/raw/ED9Wuqg8"), true))()
  55. end)
  56.  
  57. ScirptSection:NewButton("VG HUB", "This Hub Supprots 100s of games!", function()
  58. loadstring(game:HttpGet('https://raw.githubusercontent.com/1201for/V.G-Hub/main/V.Ghub'))()
  59. end)
  60.  
  61. ScirptSection:NewButton("SOLARIS", "Supports Some Expernices", function()
  62.  
  63. end)
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement