How do I change player size on R6?

Hey there! Im here with you today to ask on how I can change the size of my roblox character when a script is activated on r6. For this I tried using humanoid description

local description = Humanoid:GetAppliedDescription()
		description.HeightScale = 2
		description.WidthScale = 2
		description.DepthScale = 2
		description.HeadScale = 2
Humanoid:ApplyDescription(description)

But unfortunately its not working. How do I fix this problem or is there another method?

2 Likes

those properties only work with R15, you’ll have to manually resize the entire character yourself.

this model may help

Character Scaling (R6 and R15) - Roblox

and if that does not work there are other posts like this one

How to size a r6 Player? - Help and Feedback / Scripting Support - DevForum | Roblox

How do I easily scale a r6 rig? - Help and Feedback / Scripting Support - DevForum | Roblox

2 Likes