Advertisement
Guest User

Sirius HUB

a guest
Apr 23rd, 2022
2,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  
  3. local Window = Library.CreateLib("Sirius HUB", "Synapse")
  4.  
  5. local Tab = Window:NewTab("Script Hub")
  6.  
  7. local Section = Tab:NewSection("Scripts")
  8.  
  9. Section:NewButton("Domain X", "Domain X, A good script hub made by Shlex", function()
  10. loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/DomainX/main/source',true))()
  11. end)
  12.  
  13. Section:NewButton("Piano Player", "Goto your workspace and add the midi's", function()
  14. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/richie0866/MidiPlayer/main/package.lua"))()
  15. end)
  16.  
  17. Section:NewButton("Blowing Script", "Press 'q' in robowling after bowling", function()
  18. local Players = game:GetService("Players")
  19. local LocalPlayer = Players.LocalPlayer
  20.  
  21. local Mouse = LocalPlayer:GetMouse()
  22. local Character = LocalPlayer.Character
  23. local HRP = Character.HumanoidRootPart
  24.  
  25. function GetLanes()
  26. for i,v in pairs(game.Workspace.FunctionalAssets.BowlingLanes.Lanes:GetChildren()) do
  27. for a,b in pairs(v.Scoring.Screen2.BowlingLaneBoard.BoardGui.ImageLabel:GetChildren()) do
  28. if b.Name == game.Players.LocalPlayer.Name then
  29. return b.Parent.Parent.Parent.Parent.Parent.Parent
  30. end
  31. end
  32. end
  33. end
  34.  
  35. Mouse.KeyDown:Connect(function(Key)
  36. Key = Key:lower()
  37. if Key == "q" then
  38. for i,v in pairs(GetLanes().FunctioningAssets.Pins:GetChildren()) do
  39. v.Rotation = Vector3.new(90,0,0)
  40. end
  41. end
  42. end)
  43. end)
  44.  
  45. Section:NewButton("Infinite Yield", "Old roblox admin script that works good", function()
  46. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  47. end)
  48.  
  49. Section:NewButton("JailBreak AutoFarm", "A Nice Jail Break AutoFarm", function()
  50. loadstring(game:HttpGet("https://raw.githubusercontent.com/wawsdasdacx/ohascriptnrrewading/main/jbsaxcriptidk1"))();
  51. end)
  52.  
  53. -- Start of the second Tab Holder
  54.  
  55. local Tab = Window:NewTab("Local Player")
  56.  
  57. local Section = Tab:NewSection("Local Player Scripts")
  58.  
  59. Section:NewSlider("WalkSpeed", "Change's the players walkspeed", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  60. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  61. end)
  62.  
  63. Section:NewButton("Graphics Enhancer", "Roblox Graphics Enhancer", function()
  64. local light = game.Lighting
  65. for i, v in pairs(light:GetChildren()) do
  66. v:Destroy()
  67. end
  68.  
  69. local ter = workspace.Terrain
  70. local color = Instance.new("ColorCorrectionEffect")
  71. local bloom = Instance.new("BloomEffect")
  72. local sun = Instance.new("SunRaysEffect")
  73. local blur = Instance.new("BlurEffect")
  74.  
  75. color.Parent = light
  76. bloom.Parent = light
  77. sun.Parent = light
  78. blur.Parent = light
  79.  
  80. local config = {
  81.  
  82. Terrain = true;
  83. ColorCorrection = true;
  84. Sun = true;
  85. Lighting = true;
  86. BloomEffect = true;
  87.  
  88. }
  89.  
  90. -- settings {
  91.  
  92. color.Enabled = false
  93. color.Contrast = 0.15
  94. color.Brightness = 0.1
  95. color.Saturation = 0.25
  96. color.TintColor = Color3.fromRGB(255, 222, 211)
  97.  
  98. bloom.Enabled = false
  99. bloom.Intensity = 0.1
  100.  
  101. sun.Enabled = false
  102. sun.Intensity = 0.2
  103. sun.Spread = 1
  104.  
  105. bloom.Enabled = false
  106. bloom.Intensity = 0.05
  107. bloom.Size = 32
  108. bloom.Threshold = 1
  109.  
  110. blur.Enabled = false
  111. blur.Size = 6
  112.  
  113. -- settings }
  114.  
  115.  
  116. if config.ColorCorrection then
  117. color.Enabled = true
  118. end
  119.  
  120.  
  121. if config.Sun then
  122. sun.Enabled = true
  123. end
  124.  
  125.  
  126. if config.Terrain then
  127. -- settings {
  128. ter.WaterColor = Color3.fromRGB(10, 10, 24)
  129. ter.WaterWaveSize = 0.15
  130. ter.WaterWaveSpeed = 22
  131. ter.WaterTransparency = 1
  132. ter.WaterReflectance = 0.05
  133. -- settings }
  134. end
  135.  
  136.  
  137. if config.Lighting then
  138. -- settings {
  139. light.Ambient = Color3.fromRGB(0, 0, 0)
  140. light.Brightness = 4
  141. light.ColorShift_Bottom = Color3.fromRGB(0, 0, 0)
  142. light.ColorShift_Top = Color3.fromRGB(0, 0, 0)
  143. light.ExposureCompensation = 0
  144. light.FogColor = Color3.fromRGB(132, 132, 132)
  145. light.GlobalShadows = true
  146. light.OutdoorAmbient = Color3.fromRGB(112, 117, 128)
  147. light.Outlines = false
  148. -- settings }
  149. end
  150. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement