Nothing changed. I think this might purely be a loading problem.
1 Like
No one seems to have pointed it out, you know that HumanoidDescriptions have several scale properties you can change?
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
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