Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local engine = require("engine")
- local file = fs.open("disk/render","r")
- local monitor = peripheral.find("monitor")
- monitor.setTextScale(0.5)
- monitor.clear()
- local data = textutils.unserialise(file.readAll())
- file.close()
- while true do
- for k,v in pairs(data)
- engine.drawConverted(monitor,v)
- sleep()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement