Advertisement
Guest User

.bootup.lua

a guest
Dec 13th, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. print("Beginning System Startup...")
  2. os.sleep(4)
  3. print("Accessing Servers...")
  4. os.sleep(2)
  5. io.write("Please put in password:")
  6. local pwd=io.read()
  7. if pwd=="1337 |-|3x0r" then
  8.   print("bypassing encryption please wait")
  9.   os.sleep(0.5)
  10.   io.write("=")
  11.   os.sleep(0.5)
  12.   io.write("=")
  13.   os.sleep(0.5)
  14.   io.write("=")
  15.   os.sleep(0.5)
  16.   io.write("=")
  17.   os.sleep(0.5)
  18.   io.write("=")
  19.   print("")
  20.   os.sleep(1)
  21.   print("im in")
  22.   os.sleep(0,5)
  23.   print("g37 p0wnd")
  24.   os.sleep(1)
  25. elseif pwd~="1r0nm4nr0ck8" then
  26.   print("")
  27.   print("Unauthorized Personell Detected. Shutting Down...")
  28.   os.sleep(1)
  29.   require("computer").shutdown()
  30. end
  31. require("term").clear()
  32. print("Welcome back, Mr. Stark. What shall we write today?")
  33.  
  34.  
  35.  
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement