How do I change the size of a character Model

Hello!
I tried to make the size of a clone of the player’s char change, but I don’t know how to make it. I tried to change it with

local char = player.Character
local newchar = char:Clone()
newchar.Size = game.Workspace.examplepart.Size

I have also tried it with other methods like BodyHeightScale
but it doesn’t work either.
Does anyone know how to do it?

any help is appreciated!

1 Like

You can use Model:ScaleTo() to achieve that.

Example

local player -- Reference to player object here
local Character = player.Character or player.CharacterAdded:Wait()

Character:ScaleTo(2) -- This would make the size of the character model twice as large in comparison to its default size

-- Or

Character:ScaleTo(0.5) -- This would make the size of the character model half as large in comparison to its default size
2 Likes