Character Scaling not working on NPC

Nothing changed. I think this might purely be a loading problem.

1 Like

@XdJackyboiiXd21 @SOTR654
Sorry for the little wait. Had to do something real quick.

1 Like

No one seems to have pointed it out, you know that HumanoidDescriptions have several scale properties you can change?

image

You can probably just skip all the value checking. Just change the values you want in the HumanoidDescription before you use ApplyDescription().

local function CreateOfflineCharacter(UserID, Dummy)
	local Appearance = game.Players:GetHumanoidDescriptionFromUserId(UserID)
	Appearance.HeightScale = 3		-- Example
	Dummy.Humanoid:ApplyDescription(Appearance)
	local name = game.Players:GetNameFromUserIdAsync(userid)
	Dummy.NameDisplayDistance = 0
end
4 Likes

What is appearance? Is it a new instance?

Edit: Nevermind Iā€™m dumb lol @Vulkarin

Special thanks to: @XdJackyboiiXd21 @SOTR654 for putting so much effort to help me out!

And thanks to @Vulkarin for finding the answer for us!

1 Like