Advertisement
raph_rapide100

Door uninstaller

Jun 10th, 2025 (edited)
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. shell.run("clear")
  2. print("[Door System Uninstaller V1]")
  3. print("")
  4. print("Are you sure you want to proceed uninstallation ? y/n")
  5. local confirm = read()
  6.  
  7. if confirm == "y" or "Y" or "yes" or "YES" then
  8.     shell.run("clear")
  9.     shell.run("rm startup.lua")
  10.     shell.run("rm uninstall.lua")
  11.     print("Done. Press enter to reboot.")
  12.     read()
  13.     shell.run("reboot")
  14. else
  15.     shell.run("clear")
  16.     print("Cancelled, press enter to reboot")
  17.     read()
  18.     shell.run("reboot")
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement