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 = false - 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 BloxFruitsTab = Window:MakeTab({
    Name = "Blox Fruits",  -- Fixed extra quote here
    Icon = "rbxassetid://4483345998",
    PremiumOnly = false
})

--[[
Name = <string> - The name of the tab.
Icon = <string> - The icon of the tab.
PremiumOnly = false - Makes the tab accessible to Sirus Premium users only.
]]

local Section = BloxFruitsTab:AddSection({
    Name = "Blox Fruits"
})

--[[
Name = <string> - The name of the section.
]]

OrionLib:MakeNotification({
    Name = "Executed",
    Content = "Script Executed",
    Image = "rbxassetid://4483345998",
    Time = 5
})

--[[
Title = <string> - The title of the notification.
Content = <string> - The content of the notification.
Image = <string> - The icon of the notification.
Time = <number> - The duration of the notification.
]]

BloxFruitsTab:AddButton({
    Name = "Redz Hub",
    Callback = function()
        loadstring(game:HttpGet("https://[Log in to view URL]"))()
        print("executed")
    end    
})

--[[
Name = <string> - The name of the button.
Callback = <function> - The function of the button.
]]

BloxFruitsTab:AddButton({
    Name = "HoHo Hub",
    Callback = function()
        _G.HohoVersion = "v4"
        loadstring(game:HttpGet("https://[Log in to view URL]"))()
        print("button pressed")
    end    
})

--[[
Name = <string> - The name of the button.
Callback = <function> - The function of the button.
]]

BloxFruitsTab:AddButton({
    Name = "Sera Hub",
    Callback = function()
        getgenv().config = {
            ["Team"] = "Pirates",
            ["Use Race"] = {
                ["V3"] = true,
                ["V4"] = true
            },
            ["Info Screen"] = true,
            ["White Screen"] = false,
            ["BypassTp"] = true,
            ["SkipFruit"] = {
                "Portal-Portal"
            },
            ["Skip Race V4 User"] = true,
            ["MainSkillToggle"] = {
                ["Melee"] = {
                    ["Enable"] = true,
                    ["Delay"] = 1,
                    ["Skills"] = {
                        ["Z"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 0,
                        },
                        ["X"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 0,
                        },
                        ["C"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 0,
                        },
                    },
                },
                ["Blox Fruit"] = {
                    ["Enable"] = true,
                    ["Delay"] = 2,
                    ["Skills"] = {
                        ["Z"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 0,
                        },
                        ["X"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 2,
                        },
                        ["C"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 0,
                        },
                        ["V"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 0,
                        },
                        ["F"] = {
                            ["Enable"] = false,
                            ["HoldTime"] = 0,
                        },
                    },
                },
                ["Gun"] = {
                    ["Enable"] = false,
                    ["Delay"] = 1,
                    ["Skills"] = {
                        ["Z"] = {
                            ["Enable"] = false,
                            ["HoldTime"] = 0,
                        },
                        ["X"] = {
                            ["Enable"] = false,
                            ["HoldTime"] = 0,
                        },
                    },
                },
                ["Sword"] = {
                    ["Enable"] = false,
                    ["Delay"] = 1,
                    ["Skills"] = {
                        ["Z"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 0,
                        },
                        ["X"] = {
                            ["Enable"] = true,
                            ["HoldTime"] = 0,
                        },
                    },
                }
            },
            ["Webhooks"] = {
                ["Link Webhook"] = "",
                ["Toggle Webhook"] = true
            },
            ["ChatSpam"] = {"Hallo"},
            ["MinBountyHunt"] = 0,
            ["MaxBountyHunt"] = 30000000,
            ["SafeHealth"] = 4000
        }
        loadstring(game:HttpGet("https://[Log in to view URL]"))()
        print("button pressed")
    end    
})

--[[
Name = <string> - The name of the button.
Callback = <function> - The function of the button.
]]

Embed on website

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