Layered Clothing not positioning properly

Guys like just an hour ago the layered clothing was working fine. But now it doesnt work. Here is the pic and code

local humanoidDescription = workspace.StarterCharacter.Humanoid:GetAppliedDescription()

local updatedSpecifications = humanoidDescription:GetAccessories(true)
local newIndividualSpecification = {
    Order = 1,
    AssetId = 9061284002,
    Puffiness= 0.7,
    AccessoryType = Enum.AccessoryType.Jacket,
    IsLayered = true
}
updatedSpecifications[#updatedSpecifications + 1] = newIndividualSpecification
humanoidDescription:SetAccessories(updatedSpecifications, true)

workspace.StarterCharacter.Humanoid:ApplyDescription(humanoidDescription)