Spawning blueprint actor from c++

What function are you trying to spawn the actor in? Normally you would use FObjectFinder in the constructor, and then call SpawnActor in a function like BeginPlay or Tick. You can’t spawn actors in the constructor of a class I don’t think.