ayvacs / Proton

Flexible and powerful UI library for Roblox

Home Page:http://ave.is-a.dev/Proton/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Proton

A flexible and powerful UI library for Roblox that enables for easy instance creation and integration of functionality.

local MyGui = new "ScreenGui" {
    ["Name"] = "My Gui",
    ["Parent"] = LocalPlayer.PlayerGui,
    ["Children"] = {
        new "TextButton" {
            ["Size"] = UDim2.new(0, 250, 0, 100),
            ["Text"] = "Click me to do something cool",
            ["*MouseButton1Click"] = (function()
                print("Left mouse button clicked!")
            end)
        }
    },
}

Documentation

Please view the full documentation.

About

Flexible and powerful UI library for Roblox

http://ave.is-a.dev/Proton/

License:MIT License


Languages

Language:Luau 100.0%