local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/deedlemcdoodledeedlemcdoodle-creator/SpectravaxHub/main/uilibrary.lua"))() Library:SetTheme("Dark") --[[Heres every Themes! Nebula Obsidian Aurora Eclipse Carbon Ember Glacier Volt Nova Aether]] local Window = Library:CreateWindow("Basic Interface Suite", "aperture") Window:Label("SpectravaxISBACK") Window:CopyLabel("Copy this thingy", "You copied it") Window:Button("Click Me!",function() print("u clicked that") end) Window:Slider("Slider (Work In Progress!)", 1, 100, 50, function(v) print("Value: " .. v) end) local options = {} for i = 1, 30 do table.insert(options, "Option " .. i) end Window:Dropdown("Choose an Option", options, function(selected) print("Selected: " .. selected) end)