Advertisement
jasuk500

Tosery Title

Apr 8th, 2020
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. -- set the side of monitor
  2. local m = peripheral.wrap("back")
  3.  
  4. -- set the basic background color of monitor
  5. m.setBackgroundColor(colors.black)
  6. m.clear()
  7. m.setTextScale(5)
  8.  
  9. -- make text lines
  10. m.setCursorPos(1,1)
  11. m.setTextColor(colors.orange)
  12. m.write("TOSEORY")
  13.  
  14. m.setCursorPos(1,2)
  15. m.setTextColor(colors.purple)
  16. m.write("LAB")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement