I am not able to divide a Vec2 or Vec4 but Vec3 works fine. Seems like this should work, am I wrong?
local Case1 = Vec2(164, 0) / 255 --Doesn't work
local Case2 = Vec3(164, 0, 0) / 255 --Works
local Case3 = Vec4(164, 0, 0, 255) / 255 --Doesn't work
Error message for Case1 and 3 is:
Attempt to perform operation on an invalid operand