local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/BloxCrypto/All-scripts/refs/heads/main/Internal.lua"))() local One = library:Window("Title") One:Box("Box", "Box", function(type) print("Type" .. type) end) One:Button("Button", function() print("jskddk") end) One:Toggle("Toggle", function() end) One:Slider("Volume", 0, 100, 50, function(value) print("Value: " .. value) end) One:Dropdown("Select Option", {"Option 1", "Option 2", "Option 3"}, function(selected) print("Selected: " .. selected) end)