Tweening the scale of a model

Is it possible to tween the scale of a model properly? I am trying to get the whole model to shrink and whenever I tween it from 1 to 0 it for some reason becomes very large despite the scale values being something such as 0.3.

You can’t change the scale of a model through the scale property because it’s a non-scriptable property (see documentation here).

However, you can use the :ScaleTo() method.

You can’t use TweenService.Create():Play() because you won’t be changing a property, but you can still use TweenService iteratively to change the scale:

2 Likes

Alright, I appreciate the help!

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