How to Get Angle between 2 Vectors ? with relative to actors current forward

FMath::Acos() returns angle in radians. so you may need to add another line:

AngleInDegree = FMath::RadiansToDegrees(AngleInDegree);

now the variable AngleInDegree is really in degrees ^^