Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Step 1: Find the geo scanner
- local geo = peripheral.find("geoScanner") -- Assuming the type is "geoScanner"
- local scanResult = geo.scan(1)
- for k,v in pairs(scanResult) do
- for j,b in pairs(v) do
- print(j, b)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement