I think the main issue here is that you aren’t using the TEXT macro when creating and searching for your FName.
Try replacing
FName("Kitana_M0");
SearchFName("Kitana_M1");
with
FName(TEXT("Kitana_M0"));
SearchFName(TEXT("Kitana_M1"));
I think the main issue here is that you aren’t using the TEXT macro when creating and searching for your FName.
Try replacing
FName("Kitana_M0");
SearchFName("Kitana_M1");
with
FName(TEXT("Kitana_M0"));
SearchFName(TEXT("Kitana_M1"));