I have been trying to load a characters avatar and a dummies avatar on a local script and they are comming out bald! pls help

I have been trying my hardest to load a characters avatar from a local script but the only issue I am having is that when I am loading the characters both the dummy and the actual players avatar are not getting the accessories put on and I don’t know why. Thankyou for your time please help me out!!!

image
image

	for i,v in pairs(game.Workspace.areanas["1"].plrRig:GetChildren()) do
		if v:IsA("Shirt") or v:IsA("Pants") or v:IsA("Accessory") then
			v:Destroy()

		end
	end
	
	for i,v in pairs(game.Workspace[game.Players.LocalPlayer.Name]:GetChildren()) do
		if v:IsA("Shirt") or v:IsA("Pants") or v:IsA("Accessory") then
			local Clone = v:Clone()
			warn(v.Name)
			warn(v)
			Clone.Parent = game.Workspace.areanas["1"].plrRig

		end
	end
	
	
		for i,v in pairs(game.Workspace.areanas["1"].AiRig:GetChildren()) do
		if v:IsA("Shirt") or v:IsA("Pants") or v:IsA("Accessory") then
			v:Destroy()
			
		end
	end
	
	for i,v in pairs(game.Workspace[AI]:GetChildren()) do
		if v:IsA("Shirt") or v:IsA("Pants") or v:IsA("Accessory") then
			local Clone = v:Clone()
			warn(v.Name)
			warn(v)
			Clone.Parent = game.Workspace.areanas["1"].AiRig
		end
	end

I have no idea what is going on

Are you destroying the accessories before you clone them?

it seems that your destroying the accessory

i am destroying the previous ones in the dummy

the accessories are there but they are not going to the head immidiatly