Cooking System Help

Hello!

I’m making a Cooking System where when you put a part on a grill, it changes color, and when it’s off the grill, it’ll stop changing color. I know how to make it change color and everything, but I don’t know how to make it stop changing color, I tried searching, but couldn’t find any solutions.

Any help is appreciated!

I should’ve mention I’m using Color3 and TweenService to make it change smoothly.

1 Like

You can use tween:cancel() to stop the tweening completely or tween:pause() to stop in between and continue whenever you want to resume cooking.

1 Like

Good idea, I’ll try it out tomorrow to see if it works.