C#C
C#9mo ago
Chop

✅ 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);
}
Was this page helpful?