Advertisement
JBV17

JBV Hub

Jan 8th, 2025 (edited)
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.09 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "JBV Hub Beta",
  5. LoadingTitle = "Key System",
  6. LoadingSubtitle = "Access Premium Scripts"
  7. })
  8.  
  9. local KeyTab = Window:CreateTab("Key Input")
  10.  
  11. local KeyInput = KeyTab:CreateInput({
  12. Name = "Key Input",
  13. PlaceholderText = "Enter Key Here",
  14. RemoveTextAfterFocus = false,
  15. Callback = function(Text)
  16. if Text == "SubscribeToChillieDogs17!" then
  17. createMainHub()
  18. else
  19. Rayfield:Notify({
  20. Title = "Access Denied",
  21. Content = "Invalid Key",
  22. Duration = 3
  23. })
  24. end
  25. end
  26. })
  27.  
  28. KeyTab:CreateButton({
  29. Name = "Get Key",
  30. Callback = function()
  31. setclipboard("https://loot-link.com/s?lfJsOCCq")
  32. Rayfield:Notify({
  33. Title = "Key Link Copied",
  34. Content = "Paste in browser to get key",
  35. Duration = 3
  36. })
  37. game:GetService("GuiService"):OpenBrowserWindow("https://loot-link.com/s?lfJsOCCq")
  38. end
  39. })
  40.  
  41. function createMainHub()
  42. local GameScriptsTab = Window:CreateTab("Game Scripts")
  43. local UniversalTab = Window:CreateTab("Universal Scripts")
  44. local PlayerTab = Window:CreateTab("Player Mods")
  45.  
  46. -- MASSIVE Game Specific Scripts List
  47. local gameScripts = {
  48. -- Roblox Popular Games
  49. {Name = "Blox Fruits", Script = "https://raw.githubusercontent.com/example/bloxfruits/main/script.lua"},
  50. {Name = "Adopt Me", Script = "https://raw.githubusercontent.com/example/adoptme/main/script.lua"},
  51. {Name = "Jailbreak", Script = "https://raw.githubusercontent.com/example/jailbreak/main/script.lua"},
  52. {Name = "Pet Simulator X", Script = "https://raw.githubusercontent.com/example/petsim/main/script.lua"},
  53. {Name = "Tower of Hell", Script = "https://raw.githubusercontent.com/example/toh/main/script.lua"},
  54. {Name = "Arsenal", Script = "https://raw.githubusercontent.com/example/arsenal/main/script.lua"},
  55. {Name = "Murder Mystery 2", Script = "https://raw.githubusercontent.com/example/mm2/main/script.lua"},
  56. {Name = "Brookhaven", Script = "https://raw.githubusercontent.com/example/brookhaven/main/script.lua"},
  57. {Name = "Weight Simulator", Script = "https://raw.githubusercontent.com/example/weightsim/main/script.lua"},
  58. {Name = "Ninja Legends", Script = "https://raw.githubusercontent.com/example/ninjalegends/main/script.lua"},
  59.  
  60. -- More Unique Games
  61. {Name = "Anime Fighters", Script = "https://raw.githubusercontent.com/example/animefighters/main/script.lua"},
  62. {Name = "King Legacy", Script = "https://raw.githubusercontent.com/example/kinglegacy/main/script.lua"},
  63. {Name = "Anime Dimensions", Script = "https://raw.githubusercontent.com/example/animedimensions/main/script.lua"},
  64. {Name = "Project Slayers", Script = "https://raw.githubusercontent.com/example/projectslayers/main/script.lua"},
  65. {Name = "Fruit Battlegrounds", Script = "https://raw.githubusercontent.com/example/fruitbattlegrounds/main/script.lua"}
  66. }
  67.  
  68. -- Universal Scripts (EXPANDED)
  69. local universalScripts = {
  70. {Name = "ESP Hack", Script = "https://raw.githubusercontent.com/example/esp/main/script.lua"},
  71. {Name = "Silent Aim", Script = "https://raw.githubusercontent.com/example/silentaim/main/script.lua"},
  72. {Name = "Infinite Yield", Script = "https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"},
  73. {Name = "Fisch Script", Script = "https://raw.githubusercontent.com/Just3itx/Lunor-Loadstrings/refs/heads/main/Loader"},
  74. {Name = "Dark Hub", Script = "https://raw.githubusercontent.com/example/darkhub/main/script.lua"},
  75. {Name = "Owl Hub", Script = "https://raw.githubusercontent.com/example/owlhub/main/script.lua"},
  76. {Name = "Vape V4", Script = "https://raw.githubusercontent.com/example/vapev4/main/script.lua"},
  77. {Name = "Script-Ware", Script = "https://raw.githubusercontent.com/example/scriptware/main/script.lua"},
  78. {Name = "Hydroxide", Script = "https://raw.githubusercontent.com/example/hydroxide/main/script.lua"},
  79. {Name = "Universal Aimbot", Script = "https://raw.githubusercontent.com/example/universalaimbot/main/script.lua"}
  80. }
  81.  
  82. -- Populate Game Scripts Tab
  83. for _, game in ipairs(gameScripts) do
  84. GameScriptsTab:CreateButton({
  85. Name = game.Name,
  86. Callback = function()
  87. loadstring(game:HttpGet(game.Script))()
  88. end
  89. })
  90. end
  91.  
  92. -- Populate Universal Scripts Tab
  93. for _, script in ipairs(universalScripts) do
  94. UniversalTab:CreateButton({
  95. Name = script.Name,
  96. Callback = function()
  97. loadstring(game:HttpGet(script.Script))()
  98. end
  99. })
  100. end
  101.  
  102. -- Player Modifications
  103. PlayerTab:CreateSlider({
  104. Name = "WalkSpeed",
  105. Range = {16, 250},
  106. Increment = 1,
  107. Suffix = "Speed",
  108. CurrentValue = 16,
  109. Callback = function(Value)
  110. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  111. end
  112. })
  113.  
  114. PlayerTab:CreateSlider({
  115. Name = "Jump Power",
  116. Range = {50, 500},
  117. Increment = 1,
  118. Suffix = "Power",
  119. CurrentValue = 50,
  120. Callback = function(Value)
  121. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  122. end
  123. })
  124.  
  125. PlayerTab:CreateToggle({
  126. Name = "Infinite Jump",
  127. Callback = function(Value)
  128. getgenv().InfiniteJump = Value
  129. game:GetService("UserInputService").JumpRequest:Connect(function()
  130. if getgenv().InfiniteJump then
  131. game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
  132. end
  133. end)
  134. end
  135. })
  136.  
  137. Rayfield:Notify({
  138. Title = "Access Granted",
  139. Content = "Welcome to JBV Hub Beta!",
  140. Duration = 5
  141. })
  142. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement