Spawn Actor Return Value Problem

So I am trying to toggle my lights via a trigger box, this works fine. but when I destroy an actor (a wall) that I create using Spawn Actor all of my lights toggle off. These are completely unconnected in the BP and I have tested the connections and triggers and it seems that the return value when passed to Destroy Actor is what is causing the problem.

I will post pictures below.

If anyone has a solution to what is causing this, so that this destroy call does not affect my lights that would be great.

If not mistaken the wall triggers the end overlap event and be that the lights turns it self off, what you can do here is take the overlap actor node and cast it to the player, that way only the player can turn the lights off and on(If you want the player to do that).

From what i can see the trigger-box is also being of AActor class is being destroyed…
Try to DestroyComponent instead and see result…

the trigger-box is the link to the lights btw even though your logic for the lights is seperate…