Guest User

startup

a guest
May 10th, 2017
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. m = peripheral.wrap("right")
  2.  
  3. m.clear()
  4.  
  5. m.setTextScale(1)
  6.  
  7. m.setTextColor(1)
  8. m.setCursorPos(11,1)
  9. m.write("Welcome")
  10.  
  11. m.setCursorPos(1,3)
  12. m.write("Username:")
  13.  
  14. m.setCursorPos(1,5)
  15. m.write("Password:")
  16.  
  17. message = io.read()
  18.  
  19. m.setCursorPos(13,3)
  20.  
  21. m.write(message)
  22.  
  23. m.write("")
Add Comment
Please, Sign In to add comment