Probably a super basic question here, but how would I go about making a series of parts named from 1 to 100 a rainbow like this?
2 Likes
If you use color3.fromHSV(h,s,v), the h parameter represents the hue
So, you can simply change that value from 0 at the start to 1 at the end to get a rainbow effect, with saturation and value set to 1
(all parameters go from 0 to 1)
5 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.