Move Character to location in multiplayer

Hi i wanted to know what is the best way to make player move to a location like AI ? the situation is that i want player get in to a car so when he press F i want the Character move to the location near the door open the door and …
but i cant use Simple move to location or Actor and when i use move component to location its very laggy on other client when i set it to replicate to server

Unfortunately, outside CharacterMovementComponent, you have to implement something similar to interpolate character movement between network updates.

Here’s a very good article about smoothing player movements on a network: Entity Interpolation

Some details how CharacterMovementComponent implements its replication: CharacterMovementComponent (Networking and Multiplayer)