local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xSupFC/UI-Librarys/main/Sytro%20X%20Hub.lua"))() local Window = Library.CreateLib("Sytro X Hub | v0.12p", "Ocean") local Tab = Window:NewTab("TabName") local Section = Tab:NewSection("Section Name") Section:Button("ButtonText", "ButtonInfo", function() print("Clicked") end) Section:Toggle("ToggleText", "ToggleInfo", function(state) if state then print("Toggle On") else print("Toggle Off") end end) Section:Slider("SliderText", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) Section:Textbox("TextboxText", function(txt) print(txt) end) Section:Keybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function() print("You just clicked the bind") end) Section:Keybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function() Library:ToggleUI() end) Section:Dropdown("DropdownText", {"Option 1", "Option 2", "Option 3"}, function(currentOption) print(currentOption) end) local oldList = { "2019", "2020" } local newList = { "2021", "2022" } local dropdown = Section:Dropdown("Dropdown", oldList, function() end) Section:Button("Update Dropdown", function() dropdown:Refresh(newList) end) Section:Color("Color Text", "Color Info", Color3.fromRGB(0,0,0), function(color) print(color) -- Second argument is the default color end)