HC-12 problems with communication to pc

Hello, I am working on a project that involves two arduino nanos communicating. I have successfully used the very same hc-12 on different projects in the past, but now i cant get it to work. I have tried to enter AT commands to factory reset it, but when i type "AT" and click send I get no response on the serial monitor on either of my two hc-12. I have connected:
5v->VCC
GND->GND
D2->TX
D3->RX
GND-> SET

// See SoftwareSerial example 
// https://www.arduino.cc/en/tutorial/SoftwareSerialExample

#include <SoftwareSerial.h>;
#define RX 2 //Connect to the TX pin of the HC-12
#define TX 3 //Connect to the RX pin of the HC-12
SoftwareSerial mySerial(RX, TX);

void setup() {
  Serial.begin(9600);
  mySerial.begin(9600);

}

void loop() { // run over and over
  if (mySerial.available()) {
    Serial.write(mySerial.read());
  }
  if (Serial.available()) {
    mySerial.write(Serial.read());
  }
}

What baud rate did you use on that previous project? Perhaps you have to use that rate to be able to perform factory reset.

I used the same: 9600

Check your connections. Are any of the jumper wires faulty, or a faulty breadboard? Use your multimeter to check that the 5V pin measures 5V and the SET changes from 0V to 5V when you connect/disconnect it.