Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Simplelock: ]]--
- os.pullEvent = os.pullEventRaw
- local done = false
- while done == false do
- write("Password:")
- local password = read()
- term.clear()
- term.setCursorPos(1,1)
- --[[ USE AT RISK ]]--
- if password == "1955330244" then
- done = true
- --[[ USE AT RISK ]]--
- elseif password == "Cryptek" then
- print("Access Granted")
- redstone.setOutput("left",true)
- sleep(5)
- redstone.setOutput("left",false)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement