local m = peripheral.find"monitor" local W,H = m.getSize() while true do local x = math.random(0,100000) m.scroll(1) m.setCursorPos(1,H) m.write(string.format("%04d",x)) os.sleep(1) end