How change character size?

  1. What do you want to achieve? Keep it simple and clear!
    I want to change character size for my game, but my characters are R6 so I don’t know.
  2. What is the issue? Include screenshots / videos if possible!
    Screenshot from SoulShatters
    image
  3. What solutions have you tried so far? Did you look for solutions on the Developer
    I tried to change it to Humanoid Description, but it didn’t work.
    image
1 Like

I’m pretty sure you can make a script for that.

local HS = Humanoid.HeadScale
local BDS = Humanoid.BodyDepthScale
local BWS = Humanoid.BodyWidthScale
local BHS = Humanoid.BodyHeightScale
(You can change the values below if u want)

HS.Value = HS.Value * 2
BDS.Value = BDS.Value * 2
BWS.Value = BWS.Value * 2
BHS.Value = BHS.Value * 2

You can change the scale of the player with the Scale properties in the Humanoid. The default scale size is 1. Remember that Roblox allows players to slightly modify their body proportions in Avatar selection, so if you plan to revert the player you will need to store their current values.

Have you store their current values or not btw?

1 Like

I’ve already tried this, it’s just for R15, and here’s the error that confirms that.
And no, my plan is not to revert the player. I just want the player to be small

1 Like

You should be able to resize the BaseParts of an r6 character to achieve your desired effect.

Source: R6 scale

5 Likes

Tysm it worked, now i just need to do it when the player joins.