Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --this program asks if the player wishes to reinstall the OS, if the player says "delete" then this program will delete the startup file
- function Reinstall()
- fs.delete("startup")
- shell.run("pastebin","get","xByKNAZS","startup")
- print("rebooting system to allow Download")
- sleep(5)
- os.reboot()
- end
- print("Would you Like to reinstall Aperture Science OS System?")
- print("y = yes, n = no, d = Delete this prompt")
- while true do
- local key = os.pullEvent("key")
- if key == keys.y then
- Reinstall()
- break
- elseif key == keys.n then
- break
- elseif key == keys.d then
- fs.delete("startup")
- break
- end
- end
Add Comment
Please, Sign In to add comment