Have you confirmed the sensor itself is actually working?
Write out the following python script and run it:
import gpizero import MotionSensor pir = MotionSensor(x) //x = the out pin on your Pi. while True: if pir.motion_detected: print("Motion detected!") else: print("Nothing")And make sure you’re using the BCM pin numbering.