If you go to the Color3 API reference page, you will see new and fromRGB as some of the constructor functions for a Color3 instance.
The new function takes arguments raning from 0-1, where fromRGB takes arguments from 0-255. What could be a usecase for wanting to use the former over the latter?
I see common mistakes where people use the new constructor giving arguments higher than what is expected. So what’s the purpose of new?