✅ AUTOCLICKER
Trying to make an auto clicker when you hold down the left it doesn't work..
C#
while (true)
{
if (GetAsyncKeyState(0x0002) < 0) //0x0002 = mousebuttonleftdown
{
enableclicker = !enableclicker;
Console.WriteLine("E");
Thread.Sleep(mili);
Mouselick();
}
Thread.Sleep(200);
}Just a normal autoclicker when i hold the left button it autoclicks and when i let go it stops