A value in a module does exist but error saying it doesnt

i do not know what to do man, its late currently so its either im tired idk.


Here is the error, i printed the value (does exist) but the error is saying it doesn’t exist.
Code:

		for i,v in pairs(DataFolder2:GetChildren()) do
			if v:IsA("Folder") then
				for _,v2 in pairs(v:GetChildren()) do
					if v2.Parent == v then
						print(v2.Name,v2.Parent)
						print(DataTable[v2.Parent][v2.Name])
					end
				end
			end
		end