#include <iostream>
#include <Windows.h>
using namespace std;
int main()
{
cout << "Downloading resources... ";
Sleep(50);
cout << "done" << endl;
Sleep(50);
cout << "Attaching to process... ";
Sleep(50);
cout << "done" << endl;
while(true)
{
if(GetAsyncKeyState(VK_INSERT))
{
cout << "AimBot deteced" << std::endl;
}
Sleep(50);
}
return 1;
}