Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local password_enabled = "true"
- local password = "monkey"
- print( " Welcome! This Terminal is currently " )
- print( " Setup For Testing! " )
- print( " Press Any Key To Continue " )
- read()
- term.clear()
- print( " Please Enter Your Password! " )
- while password_enabled == true do
- if read("*") == password then
- term.clear()
- print( " Successfully Authenticated! " )
- break()
- else
- term.clear()
- print( " Password Invallid! " )
- print( " OS Will Now Reboot! " )
- sleep(5)
- os.reboot()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement