Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
- local Window = Rayfield:CreateWindow({
- Name = "JBV Hub Beta",
- LoadingTitle = "Key System",
- LoadingSubtitle = "Access Premium Scripts"
- })
- local KeyTab = Window:CreateTab("Key Input")
- local KeyInput = KeyTab:CreateInput({
- Name = "Key Input",
- PlaceholderText = "Enter Key Here",
- RemoveTextAfterFocus = false,
- Callback = function(Text)
- if Text == "SubscribeToChillieDogs17!" then
- createMainHub()
- else
- Rayfield:Notify({
- Title = "Access Denied",
- Content = "Invalid Key",
- Duration = 3
- })
- end
- end
- })
- KeyTab:CreateButton({
- Name = "Get Key",
- Callback = function()
- setclipboard("https://loot-link.com/s?lfJsOCCq")
- Rayfield:Notify({
- Title = "Key Link Copied",
- Content = "Paste in browser to get key",
- Duration = 3
- })
- game:GetService("GuiService"):OpenBrowserWindow("https://loot-link.com/s?lfJsOCCq")
- end
- })
- function createMainHub()
- local GameScriptsTab = Window:CreateTab("Game Scripts")
- local UniversalTab = Window:CreateTab("Universal Scripts")
- local PlayerTab = Window:CreateTab("Player Mods")
- -- MASSIVE Game Specific Scripts List
- local gameScripts = {
- -- Roblox Popular Games
- {Name = "Blox Fruits", Script = "https://raw.githubusercontent.com/example/bloxfruits/main/script.lua"},
- {Name = "Adopt Me", Script = "https://raw.githubusercontent.com/example/adoptme/main/script.lua"},
- {Name = "Jailbreak", Script = "https://raw.githubusercontent.com/example/jailbreak/main/script.lua"},
- {Name = "Pet Simulator X", Script = "https://raw.githubusercontent.com/example/petsim/main/script.lua"},
- {Name = "Tower of Hell", Script = "https://raw.githubusercontent.com/example/toh/main/script.lua"},
- {Name = "Arsenal", Script = "https://raw.githubusercontent.com/example/arsenal/main/script.lua"},
- {Name = "Murder Mystery 2", Script = "https://raw.githubusercontent.com/example/mm2/main/script.lua"},
- {Name = "Brookhaven", Script = "https://raw.githubusercontent.com/example/brookhaven/main/script.lua"},
- {Name = "Weight Simulator", Script = "https://raw.githubusercontent.com/example/weightsim/main/script.lua"},
- {Name = "Ninja Legends", Script = "https://raw.githubusercontent.com/example/ninjalegends/main/script.lua"},
- -- More Unique Games
- {Name = "Anime Fighters", Script = "https://raw.githubusercontent.com/example/animefighters/main/script.lua"},
- {Name = "King Legacy", Script = "https://raw.githubusercontent.com/example/kinglegacy/main/script.lua"},
- {Name = "Anime Dimensions", Script = "https://raw.githubusercontent.com/example/animedimensions/main/script.lua"},
- {Name = "Project Slayers", Script = "https://raw.githubusercontent.com/example/projectslayers/main/script.lua"},
- {Name = "Fruit Battlegrounds", Script = "https://raw.githubusercontent.com/example/fruitbattlegrounds/main/script.lua"}
- }
- -- Universal Scripts (EXPANDED)
- local universalScripts = {
- {Name = "ESP Hack", Script = "https://raw.githubusercontent.com/example/esp/main/script.lua"},
- {Name = "Silent Aim", Script = "https://raw.githubusercontent.com/example/silentaim/main/script.lua"},
- {Name = "Infinite Yield", Script = "https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"},
- {Name = "Fisch Script", Script = "https://raw.githubusercontent.com/Just3itx/Lunor-Loadstrings/refs/heads/main/Loader"},
- {Name = "Dark Hub", Script = "https://raw.githubusercontent.com/example/darkhub/main/script.lua"},
- {Name = "Owl Hub", Script = "https://raw.githubusercontent.com/example/owlhub/main/script.lua"},
- {Name = "Vape V4", Script = "https://raw.githubusercontent.com/example/vapev4/main/script.lua"},
- {Name = "Script-Ware", Script = "https://raw.githubusercontent.com/example/scriptware/main/script.lua"},
- {Name = "Hydroxide", Script = "https://raw.githubusercontent.com/example/hydroxide/main/script.lua"},
- {Name = "Universal Aimbot", Script = "https://raw.githubusercontent.com/example/universalaimbot/main/script.lua"}
- }
- -- Populate Game Scripts Tab
- for _, game in ipairs(gameScripts) do
- GameScriptsTab:CreateButton({
- Name = game.Name,
- Callback = function()
- loadstring(game:HttpGet(game.Script))()
- end
- })
- end
- -- Populate Universal Scripts Tab
- for _, script in ipairs(universalScripts) do
- UniversalTab:CreateButton({
- Name = script.Name,
- Callback = function()
- loadstring(game:HttpGet(script.Script))()
- end
- })
- end
- -- Player Modifications
- PlayerTab:CreateSlider({
- Name = "WalkSpeed",
- Range = {16, 250},
- Increment = 1,
- Suffix = "Speed",
- CurrentValue = 16,
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end
- })
- PlayerTab:CreateSlider({
- Name = "Jump Power",
- Range = {50, 500},
- Increment = 1,
- Suffix = "Power",
- CurrentValue = 50,
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end
- })
- PlayerTab:CreateToggle({
- Name = "Infinite Jump",
- Callback = function(Value)
- getgenv().InfiniteJump = Value
- game:GetService("UserInputService").JumpRequest:Connect(function()
- if getgenv().InfiniteJump then
- game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
- end
- end)
- end
- })
- Rayfield:Notify({
- Title = "Access Granted",
- Content = "Welcome to JBV Hub Beta!",
- Duration = 5
- })
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement