FObjectFinder error when

static ConstructorHelpersInternal::FObjectFinder
Sphere(TEXT(“StaticMesh’/Engine/BasicShapes/Sphere.Sphere’”));
I don’t understand, what’s happening?

A bit more information would be helpful as well as the code where you use it.

Without more information I’m guessing here, but there is one thing that stands out. FObjectFinder is a template, and I think you should be using ConstructorHelpers, not ConstructorHelpersInternal. So shouldn’t it be…

static ConstructorHelpers::FObjectFinder<UStaticMesh> Sphere(TEXT("StaticMesh'/Engine/BasicShapes/Sphere.Sphere'"));

Ahh thanks.