Advertisement
Guest User

Untitled

a guest
Feb 10th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. term.setCursorPos(1,1)
  2. term.setBackgroundColor(colors.red)
  3. term.setTextColor(colors.black)
  4. textutils.slowPrint("Starting Up...")
  5. sleep(2)
  6. term.clear()
  7. term.setCursorPos(1,1)
  8. textutils.slowPrint("User: LeverActivated")
  9. write("Password: ")
  10. if read("*") == "Pantera10" then
  11. textutils.slowPrint("Access Granted!")
  12. sleep(1)
  13. term.clear()
  14. term.setCursorPos(1,1)
  15. textutils.slowPrint("Welcome LeverActivated!")
  16. else
  17. textutils.slowPrint("Access Denied!")
  18. sleep(2)
  19. os.reboot
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement