local Apoto = loadstring(game:HttpGet("https://raw.githubusercontent.com/adamowaissi22-boop/Axom-Scripts-/refs/heads/main/Apoto%20Library%20Gui"))() local Window = Apoto:CreateWindow({ Name = "Example Using Apoto", Icon = "rbxassetid://18820555586", AccentColor3 = Color3.fromRGB(0, 170, 255) }) local MainTab = Window:CreateTab({ Name = "Main", Icon = "rbxassetid://7733960981" }) MainTab:CreateLabel("UI Example") MainTab:CreateParagraph("This demonstrates working Apoto UI features") MainTab:CreateButton({ Text = "Test Button", Callback = function() Window:CreateNotification({ Title = "Button Clicked", Description = "Button feature is working!", Duration = 3 }) end }) local TestToggle = MainTab:CreateToggle({ Text = "Test Toggle", Default = false, Callback = function(Value) Window:CreateNotification({ Title = "Toggle State", Description = "Toggle: " .. tostring(Value), Duration = 2 }) end }) local TestSlider = MainTab:CreateSlider({ Text = "Test Slider", Minimum = 0, Maximum = 100, Default = 50, Callback = function(Value) print("Slider Value: " .. Value) end }) local TestDropdown = MainTab:CreateDropdown({ Text = "Test Dropdown", Options = {"Option 1", "Option 2", "Option 3"}, Default = "Option 1", Callback = function(Selected) Window:CreateNotification({ Title = "Dropdown Selected", Description = "Selected: " .. Selected, Duration = 2 }) end }) local TestColorPicker = MainTab:CreateColorPicker({ Text = "Test Color Picker", Default = Color3.fromRGB(255, 0, 0), Callback = function(Color) print("Selected Color: " .. tostring(Color)) end }) local TestBind = MainTab:CreateBind({ Text = "Test Keybind", Default = Enum.KeyCode.F, Hold = false, CallBack = function() Window:CreateNotification({ Title = "Keybind Pressed", Description = "Keybind feature is working!", Duration = 2 }) end }) local PlayerSelector = MainTab:CreatePlayerSelector({ Text = "Select Player", Callback = function(SelectedPlayer) if SelectedPlayer then Window:CreateNotification({ Title = "Player Selected", Description = "Selected: " .. SelectedPlayer.Name, Duration = 2 }) end end }) local GameDropdown = MainTab:CreateDropdown({ Text = "Game Selection", Options = {"Blox Fruits", "Arsenal", "Jailbreak", "Adopt Me"}, Default = "Blox Fruits", Callback = function(Selected) Window:CreateNotification({ Title = "Game Selected", Description = "Game: " .. Selected, Duration = 2 }) end }) MainTab:CreateLabel("Text Display") MainTab:CreateParagraph("This is a paragraph text element showing multiple lines of text for information display") Window:CreateNotification({ Title = "Apoto UI Example", Description = "All features loaded successfully!", Duration = 4 })