Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I resize a player's model?

Asked by 5 years ago

The Motor6Ds get broken upon resizing, and I don't want to use a custom player model, I just want to change the dimensions of certain body parts.

Preferably, I'd like to simply create new Motor6D joints where the old ones were, but I couldn't find anywhere how to do so (aside from the in-built :MakeJoints() function but I feel like that could be limiting).

Thanks!

0
there is actually a much simpler solution for this, if you look under the character's humanoid (i'm not sure maybe im wrong, have look under the charcater) there are lot of number value objects which you can scale however you want t starmaq 1290 — 5y

1 answer

Log in to vote
0
Answered by
asadefa 55
5 years ago
Edited 5 years ago

There are various scale values inside the character's humanoid. They are not properties, they are actual value objects. The way to scale the character is like for example:

--To double the head's size
Character.Humanoid:FindFirstChild("HeadScale").Value = 2

There are other values to change for different character scaling

Ad

Answer this question