Advertisement
kirkarr

Untitled

Oct 16th, 2023 (edited)
551
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. local function input(prompt)
  2.     write(prompt)
  3.     return read()
  4. end
  5. local password = input("Password: ")
  6. if password ~= "Sasindustry" then
  7.     print("Wrong password")
  8.     print("Closing")
  9.     sleep(1)
  10.     os.shutdown()
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement