wrenchCustom Structs

Color

Method

color(r: number, g: number, b: number, a: number): table
local function Color(r, g, b, a)
    return {
        r = r or 0,
        g = g or 0,
        b = b or 0,
        a = a or 255
    }
end

Creates table object with color value

Last updated