For Loop not printing value

So I’m making a module and its giving no errors but

function module:SetModelCFrame(CFrameValue, Parent)
	print(Parent)
	for numb, model in next, Parent:GetDescendants() do
		print(numb)
	end
end

Dosent print ‘numb.’

It prints the parent, ReplicatedStorage in my case but not the number.

It’s because there was nothing in ReplicatedStorage. Sorry