I’m looking for a block to find an actor with the same location for me to destroy one of them but I haven’t found a graph to do that.
The exact same location, or just an aproximation? What type of actors?
If it’s just an aproximation, you could use SphereOverlapActors, which returns all actors that overlaps a sphere:
You can still use GetAllActorsOfClass or SphereOverlapActors (depending on the number of actors of that class):
And then check if the 2 locations are nearly equal.
Actors of the same class and with the same exact location.