if game.PlaceId == 189707 then
if game.PlaceId == 3255508650 then
-- Load Rayfield library
local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()
-- Create the Rayfield window
local Window = Rayfield:CreateWindow({
Name = "FE Brawl 2",
Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
LoadingTitle = "BETA TAYEVION HUB",
LoadingSubtitle = "by TAYEVION",
Enabled = true, -- Prompt the user to join your Discord server if their executor supports it
Invite = "__iiamdiorr", -- 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
})
-- Key System settings
local KeySettings = {
Title = "TAYEVION KEY System",
Subtitle = "DM ME TO GET KEY",
Note = "Instagram: __iiamdiorr", -- Use this to tell the user how to get a key
FileName = "HUB FE", -- Unique name for the key file
SaveKey = false, -- Whether to save the user's key or not
GrabKeyFromSite = true, -- Set to true to grab the key from an external site (Pastebin)
Key = {"https://[Log in to view URL]"} -- List of keys that will be accepted, can be raw file links
}
-- Applying KeySettings to the window (this was missing)
Window:SetKeySystem(KeySettings)
end
local MainTabTab = Window:CreateTab("🏠 Home", nil) -- Title, Image
local MainSection = Tab:CreateSection("Main")
Rayfield:Notify({
Title = "You Exeuted the script !",
Content = "Very Good Gui",
Duration = 5,
Image = nil,
})
local Button = MainTab:CreateButton({
Name = "Infinite Yield_500",
Callback = function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end,
})
local Slider = Tab:CreateSlider({
Name = "Walkspeed",
Range = {0, 300},
Increment = 1,
Suffix = "Speed",
CurrentValue = 16,
Flag = "Slider1", -- 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)
game.Player.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
end,
})
local Dropdown = MainTab:CreateDropdown({
Name = "Coming Soon",
Options = {"Option 1","Option 2"},
CurrentOption = {"Option 1"},
MultipleOptions = false,
Flag = "Teleport", -- 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(Options)
-- The function that takes place when the selected option is changed
-- The variable (Options) is a table of strings for the current selected options
end,
})
local Tab = Window:CreateTab("brawl 2 scripts", nil) -- Title, Image
local Button = Tab:CreateButton({
Name = "Fling",
Callback = function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end,
})
To embed this program on your website, copy the following code and paste it into your website's HTML: