Advertisement
Guest User

.Startup

a guest
Dec 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1. Username = "User"
  2. Password = "Pass"
  3.  
  4. textutils.slowPrint("What is the Username")
  5. textutils.slowPrint("Username: ")
  6. U = read()
  7.  
  8. textutils.slowPrint("What is the Password")
  9. textutils.slowPrint("Password: ")
  10. P = read()
  11.  
  12.  
  13. if U == Username then
  14.   if P == Password then
  15.     textutils.slowPrint("Welcome To this Os")
  16.     sleep(2)
  17.     shell.run(".Loading")
  18.   else
  19.   textutils.slowPrint("Your Username or Password is Incorect Please Try again")
  20.   sleep(2)
  21.   os.reboot()
  22.   end
  23. else
  24. textutils.slowPrint("Your Username or Password is Incorect Please Try again")
  25. sleep(2)
  26. os.reboot()
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement