-- Check if PlaceId matches the target game
if game.PlaceId == 189707 or game.PlaceId == 3255508650 then
    -- Load Rayfield library
    local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()

    -- Create Rayfield window with settings
    local function createWindow()
        return Rayfield:CreateWindow({
            Name = "IN BETA-FE HUB",
            Icon = 0,
            LoadingTitle = "BETA TAYEVION HUB",
            LoadingSubtitle = "by TAYEVION",
            Enabled = true,
            Invite = "__iiamdiorr",
            RememberJoins = true
        })
    end

    local Window = createWindow()

    -- Key System = true, -- settings with error handling for key retrieval
    local function setupKeySystem()
        local KeySettings = {
            Title = "TAYEVION KEY System",
            Subtitle = "DM ME TO GET KEY",
            Note = "Instagram: __iiamdiorr",
            FileName = "HUB FE",
            SaveKey = false,
            GrabKeyFromSite = true,
            Key = {"https://[Log in to view URL]"}
        }

        -- Apply Key Settings to the window
        local success, err = pcall(function()
            Window:SetKeySystem(KeySettings)
        end)
        
        if not success then
            warn("Error setting up key system: " .. err)
        end
    end

    setupKeySystem()

    -- Create Tabs and Sections
    local function createTabs()
        local MainTab = Window:CreateTab("🏠 Home", nil)
        local BrawlTab = Window:CreateTab("Brawl 2 Scripts", nil)

        -- Add Sections to Tabs
        local mainSection = MainTab:CreateSection("Main")
        local brawlSection = BrawlTab:CreateSection("Scripts")
        
        return MainTab, BrawlTab
    end

    local MainTab, BrawlTab = createTabs()
--[[
	WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
loadstring(game:HttpGet(('https://[Log in to view URL]')))()
    
    
    -- Add Notification
    local function sendNotification()
        Rayfield:Notify({
            Title = "Script Executed",
            Content = "Enjoy the new features!",
            Duration = 5,
            Image = nil,
        })
    end

    sendNotification()

    -- Create Slider for Walkspeed Adjustment
    local function createSlider(tab)
        tab:CreateSlider({
            Name = "Walkspeed",
            Range = {0, 300},
            Increment = 1,
            Suffix = "Speed",
            CurrentValue = 16,
            Flag = "Slider1",
            Callback = function(Value)
                local success, err = pcall(function()
                    game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
                end)
                if not success then
                    warn("Error setting walkspeed: " .. err)
                end
            end,
        })
    end

    createSlider(MainTab)

    -- Create Dropdown (Coming Soon Section)
    local function createDropdown(tab)
        tab:CreateDropdown({
            Name = "Coming Soon",
            Options = {"Option 1", "Option 2"},
            CurrentOption = {"Option 1"},
            MultipleOptions = false,
            Flag = "Teleport",
            Callback = function(Options)
                -- Handle option selection
                print("Selected: " .. Options[1]) -- Example of handling selection
            end,
        })
    end

    createDropdown(MainTab)

else
    -- Add error handling if PlaceId doesn't match
    warn("This script is only intended for specific games. Exiting...")
end

Embed on website

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