WEMOS D1 WIFI with AS608 Fingerprint

Hi guys, wanna ask if anyone knows why when i plug the fingerprint rx to the wemos d1 -> RX D0 and fingerprint tx on wemos D1 -> TX D1 it doesn't work?

AS608 | WEMOS D1

TX D1
RX D0

#include <SoftwareSerial.h>
SoftwareSerial fingerPrint(D0, D1);

#include <Adafruit_Fingerprint.h>
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&fingerPrint);

void setup()
{
  finger.begin(9600);

  if (finger.verifyPassword()) 
    {
      Serial.println("Found fingerprint sensor!");
      delay(1000);
    } 
    else 
    {
      Serial.println("Did not find fingerprint sensor :(");
      while (1);
    }
}

Moved your topic to it's current location as it is more suitable.

Could you take a few moments to Learn How To Use The Forum.
Other general help and troubleshooting advice can be found here.
It will help you get the best out of the forum in the future.

Ok noted thank you for the reminder i will update my post appropriately