Rotating player camera to a specific location

I’m new with Unreal Engine. My player is walking to a specific location. How can I rotate the camera so that when my player arrive to the specific location, the camera rotate to it ??

You can use “Find look at rotation” node, plugging in the location of your camera, and the location the player is (or is going to) as the target. Apply this rotation to your camera. You may need to rotate one of the resulting axes from this node 90 degrees to get the desired effect.

Edit: It would be helpful to have a “camera target” component in your player that the camera will constantly look at (using the method above) and then simply change the location of this component to control your camera’s focus.

How should I know that I need to rotate 90 degrees or -90 degrees ?? I don’t know if you got me

Does Find Look At Rotation not work? The 90 degrees rotation likely isn’t necessary.