1. os.pullEvent = os.pullEventRaw
  2.  
  3. print("Storage room user?")
  4.  
  5. correctuser = "candy"
  6. correctuser2 = "Fuzzy"
  7. correctuser3 = "AJ"
  8.  
  9. write("User:")
  10.  
  11. pass = read("*")
  12.  
  13. if pass == (correctuser) then
  14. shell.run("pass")
  15.  
  16. if pass == (correctuser2) then
  17. shell.run("pass2")
  18.  
  19. if pass == (correctuser3) then
  20. shell.run("pass3")
  21.  
  22. else
  23. print("INCORRECT GO AWAY NON USER")
  24. sleep(10)
  25. os.shutdown()
  26. end