How to work with multiple overlaping actors.

I manages to do 2 overlapping actors 1 by using EventActorBeginOverlap and other OnComponentBeginOverlap but i want to do many more overlaps how can i do that ? It does not allow me to create more same nodes or even adding pins. How can I manage to do more overlapping actors ?

use GetOverlappingActors or GetOverlappingComponents, it produces an array wire that you can then parse with a ForEachLoop or ForEachLoopWithBreak. I use this all the time when building grab code in VR projects or room-wide teleports. etc. Very useful.