yeeeeeeeeeeeee

part 3

Mar 20th, 2025
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. print("Are you sure you want to uninstall the OS? (yes/no)")
  2. local response = read()
  3. if response:lower() == "yes" then
  4.     local captcha = tostring(math.random(1000, 9999))
  5.     print("Security Check: Please type this number -> " .. captcha)
  6.     local userInput = read()
  7.     if userInput == captcha then
  8.         print("Uninstalling OS...")
  9.         fs.delete("startup.lua")
  10.         fs.delete("draw.lua")
  11.         fs.delete("uninstall.lua")
  12.         print("OS has been uninstalled. Goodbye!")
  13.         os.shutdown()
  14.     else
  15.         print("CAPTCHA failed. Uninstall aborted.")
  16.     end
  17. else
  18.     print("Uninstall canceled.")
  19. end
  20.  
Add Comment
Please, Sign In to add comment