Advertisement
9551

Untitled

Feb 26th, 2022
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. local engine = require("engine")
  2. local file = fs.open("disk/render","r")
  3. local monitor = peripheral.find("monitor")
  4. monitor.setTextScale(0.5)
  5. monitor.clear()
  6. local data = textutils.unserialise(file.readAll())
  7. file.close()
  8. while true do
  9. for k,v in pairs(data)
  10. engine.drawConverted(monitor,v)
  11. sleep()
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement