Color3 values should support math operations

can agree with this, having to do

local NewColour = Color3.new(
    ColourA.R + ColourB.R,
    ColourA.G + ColourB.G,
    ColourA.B + ColourB.B
)

is so bloody annoying. dont get why we cant just do

local NewColour = Color3.new(ColourA + ColourB)

or smtn similar to that

same goes with vectors and some CFrame stuff

1 Like