Brookhaven Fe Script
Brookhaven Fe Script
com/xHeptc/
Kavo-UI-Library/main/source.lua"))()
local Window = Library.CreateLib("this script made by gameraazvb", "DarkTheme")
local Tab = Window:NewTab("brookhaven script")
local Section = Tab:NewSection("Brookhaven fe script")
Section:NewButton("Brookhaven fe script", "ButtonInfo", function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/IceMael7/
AvatarUnlocker/main/IceHub'))()
print("Clicked")
end)
button:UpdateButton("New Text")
Section:NewToggle("idontclicksus", "ToggleInfo", function(state)
if state then
print("Toggle On")
else
print("Toggle Off")
end
end)
getgenv().Toggled = false
local oldList = {
"2020",
"2021"
}
local newList = {
"2022",
"2023"
}
local dropdown = Section:NewDropdown("Dropdown","Info", oldList, function()
end)
Section:NewButton("Update Dropdown", "Refreshes Dropdown", function()
dropdown:Refresh(newList)
end)
Section:NewColorPicker("Color Text", "Color Info", Color3.fromRGB(0,0,0),
function(color)
print(color)
-- Second argument is the default color
end)
local colors = {
SchemeColor = Color3.fromRGB(0,255,255),
Background = Color3.fromRGB(0, 0, 0),
Header = Color3.fromRGB(0, 0, 0),
TextColor = Color3.fromRGB(255,255,255),
ElementColor = Color3.fromRGB(20, 20, 20)
}
local Window = Library.CreateLib("TITLE", colors)
for theme, color in pairs(themes) do
Section:NewColorPicker(theme, "Change your "..theme, color, function(color3)
Library:ChangeColor(theme, color3)
end)