When I try and tween Color3.new(255,255,255) [WHITE] into
Color3.new(0, 255,0) [GREEN] It creates a bunch of wierd colors that aren’t supposed to appear. I understand that the ‘R’ and ‘B’ in ‘RGB’ are being tweened, how do I fix this?
This is because Color3.new expects all 3 of its values to be between 0 and 1 (each arg divided by 255), so you have two options:
1- Change Color3.new to Color3.fromRGB
2- Switch (0,255,0) to (0,1,0) and (255,255,255) to (1,1,1)