Advertisement
NotAHeckingBacon

Galaxy Script Hub V5

Aug 3rd, 2022 (edited)
3,416
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.63 KB | None | 0 0
  1. -- ORION
  2.  
  3. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  4. local Player = game.Players.LocalPlayer
  5. OrionLib:MakeNotification({
  6. Name = "Script loaded",
  7. Content = "Welcome "..Player.Name.." ",
  8. Image = "rbxassetid://4483345998",
  9. Time = 5
  10. })
  11.  
  12. -- KAVO
  13.  
  14. local Sound = Instance.new("Sound",game:GetService("SoundService"))
  15. Sound.SoundId = "rbxassetid://232127604"
  16. Sound:Play()
  17.  
  18. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  19. local Window = Library.CreateLib("Galaxy Scripts | Free", "GrapeTheme")
  20.  
  21. -- MAIN
  22. local Main = Window:NewTab("Socials")
  23. local MainSection = Main:NewSection("Bacon Hacks")
  24.  
  25.  
  26. MainSection:NewButton("YouTube Channel- Click to copy link", "Search http://surl.li/cpdxe if clicking doesn't work", function()
  27. setclipboard('https://www.youtube.com/channel/UCt1UF4Glun5X_D-qXaJcQtg')
  28. end)
  29.  
  30. MainSection:NewButton("Discord Server- Click to copy link", "Type discord.gg/44ANWfjDHD is clicking doesn't work", function()
  31. setclipboard('discord.gg/44ANWfjDHD')
  32. end)
  33.  
  34. -- FEATURES
  35.  
  36. local Main = Window:NewTab("Features")
  37. local MainSection = Main:NewSection("Have fun :D")
  38.  
  39. MainSection:NewToggle("Super Speed", "Become Sonic", function(state)
  40. if state then
  41. local Sound = Instance.new("Sound",game:GetService("SoundService"))
  42. Sound.SoundId = "rbxassetid://177266782"
  43. Sound:Play()
  44. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  45. else
  46. local Sound = Instance.new("Sound",game:GetService("SoundService"))
  47. Sound.SoundId = "rbxassetid://177266782"
  48. Sound:Play()
  49. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  50. end
  51. end)
  52.  
  53. MainSection:NewButton("Anti-Afk", "Won't get kicked for being afk", function()
  54. for i,v in pairs(getconnections(game:GetService("Players").LocalPlayer.Idled)) do
  55. v:Disable()
  56. end
  57. end)
  58.  
  59. MainSection:NewButton("Infinite Jump- Hold jump button", "Stays activated forever by the way", function()
  60. game:GetService("UserInputService").JumpRequest:connect(function()
  61. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  62. end)
  63. end)
  64.  
  65. MainSection:NewButton("Click to teleport", "Hold the tool and click where you want to go", function()
  66. mouse = game.Players.LocalPlayer:GetMouse()
  67. tool = Instance.new("Tool")
  68. tool.RequiresHandle = false
  69. tool.Name = "Click Teleport"
  70. tool.Activated:connect(function()
  71. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  72. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  73. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  74. end)
  75. tool.Parent = game.Players.LocalPlayer.Backpack
  76. end)
  77.  
  78. MainSection:NewButton("Walk on walls- Reset to turn off", "Spider-man lol", function()
  79. loadstring(game:HttpGet("https://pastebin.com/raw/zXk4Rq2r"))()
  80. end)
  81.  
  82. MainSection:NewButton("Fling[R6]- Press 'E' where your mouse is", "Only works in R6", function()
  83. loadstring(game:HttpGet("https://pastebin.com/raw/BsiK0Pi1"))()
  84. end)
  85.  
  86. -- PLAYER
  87. local Custom = Window:NewTab("Player")
  88. local CustomSection = Custom:NewSection("Custom Speed and Jump, etc")
  89.  
  90. CustomSection:NewSlider("Walk Speed", "Change the speed you walk at", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  91. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  92. end)
  93.  
  94. CustomSection:NewSlider("Jump Power- Broken", "Gonna try to fix this soon", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  95. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  96. end)
  97.  
  98. CustomSection:NewButton("Reset Player", "Pretty self explanitory :/", function()
  99. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  100. end)
  101.  
  102. CustomSection:NewButton("Fly [R15]- Press 'X' to toggle", "Pretty cool huh? :D", function()
  103. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
  104.  
  105. Fly(true)
  106. end)
  107.  
  108. CustomSection:NewButton("No Clip- Press 'N' to toggle [Only click once]", "Hopefully this stays unpatched", function()
  109. loadstring(game:HttpGet("https://pastebin.com/raw/BJVUVNw5"))()
  110. end)
  111.  
  112. -- MUSIC
  113. local Sounds = Window:NewTab("Music :D")
  114. local SoundsSection = Sounds:NewSection("Play music by clicking the buttons- Turn up volume")
  115.  
  116. SoundsSection:NewButton("Sugar Crash", "Enjoy listening", function()
  117. local Sound = Instance.new("Sound",game:GetService("SoundService"))
  118. Sound.SoundId = "rbxassetid://6875625578"
  119. Sound:Play()
  120. end)
  121.  
  122. SoundsSection:NewButton("Rick Roll", "Enjoy listening", function()
  123. local Sound = Instance.new("Sound",game:GetService("SoundService"))
  124. Sound.SoundId = "rbxassetid://7363412529"
  125. Sound:Play()
  126. end)
  127.  
  128. SoundsSection:NewButton("Had Me At Hello", "Enjoy listening", function()
  129. local Sound = Instance.new("Sound",game:GetService("SoundService"))
  130. Sound.SoundId = "rbxassetid://9043871744"
  131. Sound:Play()
  132. end)
  133.  
  134. SoundsSection:NewButton("JoJo", "Enjoy listening", function()
  135. local Sound = Instance.new("Sound",game:GetService("SoundService"))
  136. Sound.SoundId = "rbxassetid://9114156521"
  137. Sound:Play()
  138. end)
  139.  
  140. -- Settings
  141. local Settings = Window:NewTab("Settings")
  142. local SettingsSection = Settings:NewSection("Pick your settings")
  143.  
  144. SettingsSection:NewKeybind("Toggle GUI", "Pick the button to open/close gui", Enum.KeyCode.RightControl, function()
  145. Library:ToggleUI()
  146. local Sound = Instance.new("Sound",game:GetService("SoundService"))
  147. Sound.SoundId = "rbxassetid://177266782"
  148. Sound:Play()
  149. end)
  150.  
  151. SettingsSection:NewButton("Disconnect from server", "Kicks you from the game", function()
  152. game:GetService("Players").LocalPlayer:Kick("|")
  153. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement