local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Nocturnal hub blue lock rivals", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default). LoadingTitle = "Made my Nocturnal", LoadingSubtitle = "OP HUB", Theme = "Ocean", -- Check https://docs.sirius.menu/rayfield/configuration/themes DisableRayfieldPrompts = true, DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface ConfigurationSaving = { Enabled = true, FolderName = nil, -- Create a custom folder for your hub/game FileName = "Big Hub" }, Discord = { Enabled = false, -- Prompt the user to join your Discord server if their executor supports it Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD RememberJoins = true -- Set this to false to make them join the discord every time they load it up }, KeySystem = true, -- Set this to true to use our key system KeySettings = { Title = "Nocturnal hub key", Subtitle = "Key System", Note = "get the key in discord", -- Use this to tell the user how to get a key FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from Key = {"Neoncool5"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22") } }) Rayfield:Notify({ Title = "Hello", Content = "thanks for using the hub", Duration = 6.5, Image = 4483362458, }) local Tab1 = Window:CreateTab("Scripts", 4483362458) -- Title, Image local Section = Tab1:CreateSection("Styles") local Button = Tab1:CreateButton({ Name = "Don lorenzo style", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Youifpg/Styles/refs/heads/main/Zombie.lua"))() -- The function that takes place when the button is pressed end, }) local Button = Tab1:CreateButton({ Name = "CR7 style", Callback = function() game:GetService("StarterGui"):SetCore("SendNotification",{ Title = "Script loaded enjoy!", Text = "Script is beta wait for updates in Arbix Hub server !", Button1 = "Yes", Button2 = "Cancel", Duration = 30 }) while true do loadstring(game:HttpGet("https://raw.githubusercontent.com/Youifpg/CR7/refs/heads/main/CR7.lua"))() loadstring(game:HttpGet("https://pastebin.com/raw/84rU4mHU"))() wait() end -- The function that takes place when the button is pressed end, }) local Tab2 = Window:CreateTab("best hubs", 4483362458) -- Title, Image local Button = Tab2:CreateButton({ Name = "N5 HUB", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/UPD-Blue-Lock:-Rivals-GET-FREE-KARASU-AND-OTOYA-STYLES-28209"))() end, }) local Button = Tab2:CreateButton({ Name = "Visual Beta", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Blue-Lock:-Rivals-Lock-Best-Free-Script-27507"))() end, }) local Button = Tab2:CreateButton({ Name = "Express Hub", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Best-Free-Universal-GUI-V6-27679"))() end, }) local Button = Tab2:CreateButton({ Name = "Apoc Hub (key)", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-FIXED-FREEZING-and-Crashing-Apoc-Hub-Over-20-Games-28028"))() end, }) local Button = Tab2:CreateButton({ Name = "Auto Gk ", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Youifpg/Arbix--Hub/refs/heads/main/Blue!ock.lua"))() -- The function that takes place when the button is pressed end, }) local StyleTab = Window:CreateTab("Any Style", nil) -- Title, Image local StyleSection = StyleTab:CreateSection("Get Any Style! Example Rin Shidou and so on....") local StyleButton = StyleTab:CreateButton({ Name = "Get Any Style - Made By GoatTouka🐐 ( YOU NEED REO STYLE FOR IT TO WORK!!", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Youifpg/Arbix-OP/refs/heads/main/SigmaSkibidiTOUKA.lua"))() end, }) local Tab3 = Window:CreateTab("Extras", 4483362458) -- Title, Image Tab3:CreateSection("Extra Stuff That Might Be Useful") local Button = Tab3:CreateButton({ Name = "Mobile Keyboard", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/rrixh/skripts/refs/heads/main/deltamobile-keyboard-kraxked",true))(); end, }) local Button = Tab3:CreateButton({ Name = "Infinite Yield (Admin)", Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end, }) local Toggle = Tab3:CreateToggle({ Name = "infinite jump", CurrentValue = false, Flag = "infinite jump", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps Callback = function(Value) local InfiniteJumpEnabled = true game:GetService("UserInputService").JumpRequest:connect(function() if InfiniteJumpEnabled then game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") end end) end, }) local Tab4 = Window:CreateTab("discord links", 4483362458) -- Title, Image local Button = Tab4:CreateButton({ Name = "Nocturnal discord", Callback = function() setclipboard("https://discord.gg/7qXEC3AwFH") toclipboard("https://discord.gg/7qXEC3AwFH") end, }) local Button = Tab4:CreateButton({ Name = "Presidentzuyi discord", Callback = function() setclipboard("https://discord.gg/3RkTt8M9") toclipboard("https://discord.gg/3RkTt8M9") end, })