I have coded a computer lock (a lock that locks the computer with a password) and when I launch it it says bios:337: [string "startup"}:5" unfinished string. I have finished it. Can someone check my coding and see if there is an error? Thank you!
print("Starting Up CraftOS…")
sleep(5)
print("Login Program Coded By FunkyBass Productions")
print("Please Type In The Password")
print(")
password = read()
if password == "Pineapple100" then
print("Password Correct!")
sleep(3)
print("Logging In…")
sleep(5)
print("Loading Files…")
sleep(5)
print("Loading Programs…")
sleep(5)
print("Loading Personal Settings…")
sleep(5)
print("Loading…")
sleep(1)
print("Logging In")
sleep(10)
os.clear()
else
print("Logging In…")
sleep(5)
print("Error! Password Incorrect!")
sleep(2)
print("Shutting Down Computer!")
sleep(5)
os.shutdown()
end