Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- shell.run("clear")
- print("[Door System Uninstaller V1]")
- print("")
- print("Are you sure you want to proceed uninstallation ? y/n")
- local confirm = read()
- if confirm == "y" or "Y" or "yes" or "YES" then
- shell.run("clear")
- shell.run("rm startup.lua")
- shell.run("rm uninstall.lua")
- print("Done. Press enter to reboot.")
- read()
- shell.run("reboot")
- else
- shell.run("clear")
- print("Cancelled, press enter to reboot")
- read()
- shell.run("reboot")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement