Changing R15 character avatar to blocky avatar

So basically im trying to filter R15 avatars that are character or accessory, i had success with accessory avatars but i couldn’t filter character avatars to blocky avatars.

image

currently im trying to turn it to blocky avatar by setting AssetId of BodyPartDescription to 0 but it’s not working, it sets AssetId to 0 but body parts don’t change to blocky.

anyone knows how can achieve this?

here is type of not blocky avatar im referring to:
image

Instead of editing the parts individually, try modifying the HumanoidDescription.

local desc = Humanoid:GetAppliedDescription()

desc.RightArm = 0
desc.LeftArm = 0
desc.RightLeg = 0
desc.LeftLeg = 0
desc.Torso = 0

Humanoid:ApplyDescription(desc)
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.