1 | local newColor = Color 3. new(math.random( 255 ), math.random( 255 ), math.random( 255 )) |
2 | for i = 0 , 1 , 0.1 do |
3 | script.Parent.Color = script.Parent.Color:lerp(newColor, i) |
4 | wait() |
5 | end |
Instead of doing a transition, it does this garbage instead.: https://www.youtube.com/watch?v=qHoCi8t3p3g
Color3.new takes float from 0 to 1. You should use Color3.fromRGB instead if you're trying to use RGB values for parameters:
1 | local newColor = Color 3. fromRGB(math.random( 255 ), math.random( 255 ), math.random( 255 )) |
2 | for i = 0 , 1 , 0.1 do |
3 | script.Parent.Color = script.Parent.Color:lerp(newColor, i) |
4 | wait() |
5 | end |