Custom Structs
Color
Method
color(r: number, g: number, b: number, a: number): tablelocal function Color(r, g, b, a)
return {
r = r or 0,
g = g or 0,
b = b or 0,
a = a or 255
}
endLast updated
color(r: number, g: number, b: number, a: number): tablelocal function Color(r, g, b, a)
return {
r = r or 0,
g = g or 0,
b = b or 0,
a = a or 255
}
endLast updated