onlyZeroArgsUse Color3.fromRGB() instead of new Color3(). new Color3() uses floats [0-1] and performs worse than Color3.fromRGB() which uses [0-255]. Only 'new Color3()' or 'new Color3(0, 0, 0)' are allowed.small-rules/no-color3-constructorBan new Color3(...) except new Color3() or new Color3(0, 0, 0). Use Color3.fromRGB() instead.
onlyZeroArgsUse Color3.fromRGB() instead of new Color3(). new Color3() uses floats [0-1] and performs worse than Color3.fromRGB() which uses [0-255]. Only 'new Color3()' or 'new Color3(0, 0, 0)' are allowed.useFromRGBUse Color3.fromRGB() instead of new Color3(). new Color3() uses floats [0-1] and performs worse than Color3.fromRGB() which uses [0-255].This rule accepts one options object after the severity.
new Color3(255);After auto-fix
Color3.fromRGB(255, 0, 0);Color3.fromRGB(255, 128, 64);