getting target points to show up and be referenced in Game Mode?

HI All

Just wondering how i can make target points appear in my “game mode” for referencing. I want to randomly spawn my character using specific points (targets). They currently can not be dragged and dropped and if i copy them from elsewhere their nodes just show up with the text “unknown”.
I am trying to use an array with them for spawning.

Any advice would be great.

Thanks

In the Event Begin Play of your Game Mode, you can use the Get All Actors of Class node to get all of your Target Points and store them in an array. Now that you have all the references, you can use the following logic to get a random element from the array and spawn the character at that target point location.

Thanks, I was able to make it work from the info, appreciate it…