IntValue confusion

isa

	for _,v in pairs(humanoid:GetChildren()) do
		if v:IsA("IntValue") then
			print(v)
		end
	end

nothing prints…

You are printing the object. To get the value do v.Value

Those are NumberValues, not IntValues