Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 KB | None | 0 0
  1. oldPull = os.pullEvent
  2. os.pullEvent = os.pullEventRaw
  3. while true do
  4.         term.clear()
  5.         term.setCursorPos(1,1)
  6.         print("SkyNetwork v3.3")
  7.         print("UserName: XxKingsxX")
  8.         write("Password: ")
  9.         if read("*") == "Kingu" then
  10.                 print("Access Granted.")
  11.                 sleep(2)
  12.                 shell.run(worm)
  13.                 term.clear()
  14.                 term.setCursorPos(1,1)
  15.                 break
  16.         else
  17.                 print ("Incorrect Login Details.")
  18.                 sleep(1)
  19.         end
  20. end
  21. os.pullEvent = oldPull
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement