Is your goal to get the change in mouse movement in x and y axis?
You can obtain that (without any mouse buttons having been pressed) this way:
//Player Controller Function
//Mouse Dx/dy
FVector2D MouseDelta;
GetInputMouseDelta(MouseDelta.X, MouseDelta.Y);