You can name your sprite and check for the position and then remove it from memory
override func update(_ currentTime: TimeInterval) {
for node in children {
if node.name == "wbc" {
if node.position.y < frame.minY - 50 {
node.removeFromParent()
}
}
}
}