local OrionLib = loadstring(game:HttpGet(('https://[Log in to view URL]')))()

local Window = OrionLib:MakeWindow({
    Name = "Rodan Hub V1",
    HidePremium = false,
    SaveConfig = true,
    ConfigFolder = "OrionTest"
})

--[[
Name = Rodan Hub - The name of the UI.
HidePremium = false - Whether or not the user details shows Premium status or not.
SaveConfig = true - Toggles the config saving in the UI.
ConfigFolder = string - The name of the folder where the configs are saved.
IntroEnabled = true - Whether or not to show the intro animation.
IntroText = Rodan Hub - Text to show in the intro animation.
IntroIcon = "rbxassetid://" - URL to the image you want to use in the intro animation.
Icon = "rbxassetid://" - URL to the image you want displayed on the window.
CloseCallback = <function> - Function to execute when the window is closed.
]]

local Tabs = {
    Farm = Window:CreateTab("Farm", 78832038241257),
    Bounty = Window:CreateTab("Bounty", 127881003227995),
    FruitBG = Window:CreateTab("Fruit BG", 75854525981299),
    Fisch = Window:CreateTab("Fisch", 110654365030834),
    Misc = Window:CreateTab("Misc", 108129201671893)
}


-- Button Generator
local function createScriptButton(tab, name, url)
    tab:CreateButton({
        Name = name,
        Callback = function()
            local success, err = pcall(function()
                local script = game:HttpGet(url)
                loadstring(script)()
            end)
            if not success then
                warn("Failed to load " .. name .. ": " .. tostring(err))
            end
        end
    })
end

-- Add Buttons to Tabs
createScriptButton(Tabs.Farm, "Redz Hub", "https://[Log in to view URL]")
createScriptButton(Tabs.Farm, "HoHo Hub", "https://[Log in to view URL]")
createScriptButton(Tabs.Bounty, "Sera Hub", "https://[Log in to view URL]")
createScriptButton(Tabs.FruitBG, "Askien Hub", "https://[Log in to view URL]")
createScriptButton(Tabs.Fisch, "Speed hub X", "https://[Log in to view URL]")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: