I can’t figure out or find out how to resize my character (R6 Rig) without messing up the character’s look. How do I resize the character with everything intact?
1 Like
Use
BodyHeightScale
BodyDepthScale
and
BodyWidthScale
It is explained here.
Resizing the Character
2 Likes
Doesn’t that only work for R15 though? As I stated I’m working with an R6 Rig here.
1 Like
You will need to resize the motors and baseparts using some of the below;
local Scale = 2 -- (<intvalue>)
BASEPART.Size = BASEPART.Size * Scale
Then for the motors, along the lines of;
Motor.CO = Motor.CO * (CFrame.new(Scale, Scale, Scale) * CFrame.Angles(Scale, Scale, Scale))
Motor.C1 = Motor.C1 * (CFrame.new(Scale, Scale, Scale) * CFrame.Angles(Scale, Scale, Scale))
That’s roughly what you need to do.
3 Likes