How to make parts smoothly transition from one color to another

Hello everyone, I suppose we all know what a reactor core game is on our favorite platform.

I basically want a script which goes along my meltdown and startup scripts like.

Startup:

  1. Lasers on
  2. Reactor Color Changes from normal to orange and back to normal(S M O O T H L Y)
  3. Poof done.
    Meltdown
    1.Core goes VRRRRRRR.
    2.Color changes to orange then red
  4. Boom

Note that these scripts will be tied to a main meltdown/startup script. Maybe they will go in peacefully or maybe the script wont work. Didnt tried it.

Thanks, Immebest.

1 Like

Colors can be Tween’ed just like any other property. Would that work for you?

I did checked that but I dont know how to like not change it back and keep going redder and darker.

1 Like

You could chain several tweens together, for example by waiting for however long the previous tween is before starting the next one, or by calling Tween.Completed:Wait() between each tween.

2 Likes

So this goes by first making a tween for the color yellow, then Tween:Completed and then red.

Thanks, I will inform you when I do this.

1 Like

Yeah pretty much. If it doesn’t work how you want, I’m sure there’s some other way of doing it.