Advertisement
LazerAio

.CMD

Feb 22nd, 2022
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. os.pullEvent = os.pullEventRaw
  2. term.setBackgroundColor( colors.black )
  3. term.clear()
  4. term.setCursorPos(1,1)
  5. print("Assuming user 'user'")
  6. local yourpass = "0000"
  7. local Admin = "user"
  8. print("Enter username")
  9. usrname = read()
  10. print("Enter password")
  11. password = read("")
  12. if password == yourpass and usrname == Admin then
  13. print("Type back to return")
  14. print("Ignore the error below")
  15. print("----------------------")
  16. else
  17. print("DENIED")
  18. sleep(2)
  19. os.reboot()
  20. end
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement