PrimaryPart being destroyed on clone?

I’m getting this problem where when I clone a model with a PrimaryPart set, it just gets removed for no reason?

local Dummy = script:WaitForChild('Dummy')

for i = 1, 20 do
	local Clone = Dummy:Clone()
	
	Clone.Parent = workspace
	print(Clone.PrimaryPart) -- prints nil
end


Is the HRP’s Archivable property set?

Yee