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?