Get Current HUD from Outside GameMode

AHUDClassName* TheHUD = Cast(TheController->GetHUD());

You will need to cast the GetHUD() return value if it is a custom HUD class and not the base AHUD. Also, seen as you need it in the controller, you can just call the GetHUD() function or simply use this->GetHUD();.