Setting HumanoidDescription scale not working

I’m setting and apply their scale, and it was working yesterday, but now doesn’t work now and they just kinda clump into a mass

image

function StatueService:SetCharacter(userId, rank, amount)	
	local Success, HumanoidDescription = pcall(function()
		return Players:GetHumanoidDescriptionFromUserId(userId)
	end)
	
	if not Success then
		error(HumanoidDescription)
		
		return
	end
	
	local PlaceCharacter = Podiums.Characters:FindFirstChild(rank)
	if not PlaceCharacter then
		return
	end
	
	HumanoidDescription.DepthScale = 2
	HumanoidDescription.HeadScale = 2
	HumanoidDescription.HeightScale = 2
	HumanoidDescription.WidthScale = 2
	
	local Success, Username = pcall(function()
		return Players:GetNameFromUserIdAsync(userId)
	end)
	
	if Success then
		PlaceCharacter.HumanoidRootPart.Rank.Label.Text = string.format("#%s %s", rank, Username)
	end
	
	PlaceCharacter.Humanoid:ApplyDescription(HumanoidDescription)
end