UE4 Check all Actors in an array for condition

Imo This is the issue.

You are checking for indexes that do not exist.

You can:

  1. use for each loop: it will only check within the length of the array.
  2. Place is valid nodes after the Get.

Youll still ned is valid using for each, but its better if you plan to not have a fixed size for the array.