all my nrf24 moduals don't work

Hi guys, ive resently been buying a few pairs of nrf24 i bought 3 of the small ones and 3 of the ones with antenna, but the first time i used them for a tank project and the worked but then after alot of stress testing to the tank they stopped working i had them connected to 2 arduino unos , but i thout it was the moduls so i bough another pair and nothing i thoght i had bbroken them cuss i like to soden female headers to the 5v regulator modul soy i just got another pair today with female to mail cables and all new so i connect it to my arduino uno and my arduino mega and nothing , they wont reseve nor send data this is the code i use

TX Code
/*

RX CODE
/*

  • Arduino Wireless Communication Tutorial
  • Example 1 - Receiver Code
  • by Dejan Nedelkovski, www.HowToMechatronics.com
  • Library: TMRh20/RF24, GitHub - nRF24/RF24: OSI Layer 2 driver for nRF24L01 on Arduino & Raspberry Pi/Linux Devices
    */
    #include <SPI.h>
    #include <nRF24L01.h>
    #include <RF24.h>
    RF24 radio(7, 8); // CE, CSN
    const byte address[6] = "00001";
    void setup() {
    Serial.begin(9600);
    radio.begin();
    radio.openReadingPipe(0, address);
    radio.setPALevel(RF24_PA_MIN);
    radio.startListenAing();
    }
    void loop() {
    if (radio.available()) {
    char text[32] = "";
    radio.read(&text, sizeof(text));
    Serial.println(text);
    }
    }

so after looking up on the internet i have given up and now i need your help guys

you talk about 5v - you realize that the NRF24 is a 3.3v device, and you'll damage them if you give them 5v, right? If not, that's probably your problem.

im using the 5v adapter