Method to make part color change smoothly?

Wondering what simple method can be used to make a color change smoother?

For example:

part.Color = Color3.new(0, 1, 0)
wait(0.3)
part.Color = Color3.new(1, 1, 1)

Making this change smoothly instead of an instant color change.
Any tips?

5 Likes

Try checking out the service named “TweenService”:

5 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.