I am currently working on a character resize script using NPC’s the problem i’ve encountered is that the accessories doesn’t resize.
This is my code:
local id = 1046851536
local Models = game.Players:GetCharacterAppearanceAsync(id)
Models.Parent = script.Parent
wait()
for i,v in pairs(Models:GetChildren()) do
print(v.Name)
v.Parent = script.Parent
Models.
wait()
end
Why don’t you try using the HumanoidDescription System to resize your character? I believe it is the safest way to proceed and even the accessories are scaled accordingly.
Didn’t work out, I’ve tried using GetHumanoidDescriptionFromUserId and applying the description from the user, but the character havent changed the values or anything, so im still in a struggle.