Character.Scale isn't able to be referenced

I want to scale up characters, but using the code below, even though Scale is a property of a model, doesn’t work, and errors and says that it isn’t a “member of the character”.

I tried scaling the characters up different ways, but nothing would work.

Here’s the line of code I tried using:

char.Scale *= 1.4

Thanks

Model.Scale is an editor-only property. You should use Model:ScaleTo() instead. Since you are trying to multiply the current scale, you should probably do this:

char:ScaleTo(1.4 * char:GetScale())
1 Like

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