Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Rayfield/main/source"))()
- local Window = Rayfield:CreateWindow({
- Name = "Rumanthan's Hub",
- LoadingTitle = "Loading...",
- LoadingSubtitle = "By Rumanthan",
- ConfigurationSaving = {
- Enabled = false,
- },
- Discord = {
- Enabled = false,
- },
- KeySystem = false
- })
- -- Tab
- local Tab = Window:CreateTab("Main", 4483362458) -- Change icon if needed
- -- Harlen Hub (Break in 2)
- Tab:CreateButton({
- Name = "Harlen Hub (Break in 2)",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/harlenscripts/HarlenHub/main/HarlenScripts"))()
- end
- })
- -- Blue Lock Rivals Script Hub
- Tab:CreateButton({
- Name = "Blue Lock Rivals Script Hub",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/WWa5yYf8"))()
- end
- })
- -- BLR Custom Styles (OP)
- Tab:CreateButton({
- Name = "BLR Custom Styles (OP)",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/OrignalCombo/Atomic-Hub/refs/heads/main/ScriptX"))()
- end
- })
- -- Hydroxide
- Tab:CreateButton({
- Name = "Hydroxide",
- Callback = function()
- local owner = "Upbolt"
- local branch = "revision"
- local function webImport(file)
- return loadstring(game:HttpGetAsync(("https://raw.githubusercontent.com/%s/Hydroxide/%s/%s.lua"):format(owner, branch, file)), file .. '.lua')()
- end
- webImport("init")
- webImport("ui/main")
- end
- })
- -- Infinite Yield (Admin Commands)
- Tab:CreateButton({
- Name = "Infinite Yield (Admin Commands)",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end
- })
- -- Close Button & Toggle UI
- local UI = game:GetService("CoreGui"):FindFirstChild("Rayfield")
- if not UI then UI = game:GetService("Players").LocalPlayer.PlayerGui end
- local toggleButton = Instance.new("TextButton")
- toggleButton.Size = UDim2.new(0, 120, 0, 40)
- toggleButton.Position = UDim2.new(0, 10, 0, 10)
- toggleButton.Text = "Open GUI"
- toggleButton.Parent = game:GetService("CoreGui")
- toggleButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- toggleButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- toggleButton.Font = Enum.Font.SourceSans
- toggleButton.TextSize = 18
- toggleButton.Visible = false
- Window:CreateButton({
- Name = "Close GUI",
- Callback = function()
- UI.Enabled = false
- toggleButton.Visible = true
- end
- })
- toggleButton.MouseButton1Click:Connect(function()
- UI.Enabled = true
- toggleButton.Visible = false
- end)
- Rayfield:Notify({
- Title = "GUI Loaded",
- Content = "Your script hub is ready!",
- Duration = 5
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement