Script Function ReferenceFunction Reference >Script Function Reference >Function Manipulation>RGBRGBRGB generates a color as a color table.
RGB(r, g, b)
Parametersr is the red component of the color ranging from 0 - 255g is the green component of the color ranging from 0 - 255 b is the blue component of the color ranging from 0 - 255 Return ValueRGB returns a color table.Examplefunction example() setFunctionColor("f", RGB(128, 255, 255)) end |