Actor component not spawning while others do

Anyone know what I am doing wrong here?

My player controller has 3 actor components.

The first 2 (BP_ListComponentInventory and BP_ListComponent_Deck) are found but the last one (BP_Equipment) is not found?

I dont nothing different with BP_Equipment but somehow does not spawn at all.

Hi @Johnveng

Those are object references, so you need to either spawn/create them in blueprints then assign them to the variables, or easier add them to your level and select them in your actor. Make sure you expose the variables to the editor and on spawn.

Stewart

Thanks!