local Library = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local Window = Library:Window("PREVIEW",Color3.fromRGB(44, 120, 224), Enum.KeyCode.RightControl)


local Tab = Window:Tab("Tab 1")
Library:Notification("Notification", "Hello!", "Hi!")
Tab:Button("Button", function()
Library:Notification("Notification", "Hello!", "Hi!")
end)
Tab:Toggle("Toggle",false, function(Value)
print(Value)
end)
Tab:Dropdown("Dropdown",{"Option 1","Option 2","Option 3","Option 4","Option 5"}, function(Value)
print(Value)
end)
Tab:Colorpicker("Colorpicker",Color3.fromRGB(255,0,0), function(Value)
print(Value)
end)
Tab:Textbox("Textbox",true, function(Value)
print(Value)
end)
Tab:Bind("Keybind",Enum.KeyCode.RightShift, function()
print("Pressed!")
end)


Tab:Label("Label")
ChangeColor:Colorpicker("Change UI Color",Color3.fromRGB(44, 120, 224), function(t)
Library:ChangePresetColor(Color3.fromRGB(t.R * 255, t.G * 255, t.B * 255))
end)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: