The geolyzer scans an entire column and returns the results for the individual blocks in a table, which are then used in the next if cycle.
Also I figured out the problem.
hologram.clear()
for x = 1, 32 do
for z = 1, 32 do
local myTable = geolzyer.scan(x,z)
for y = 1,32 do
if myTable then
if myTable[y] > 0 then
hologram.set(x,y,z,1)
end
end
end
end
end
However I ran into a new one. When the whole scan is done, there are vertical holes all the way through. Any idea what might be c