How to move the thirdcharacter from one point to another

Good evening, is that someone knows how to move the thirdcharacter from one point to another automatically at a certain time and then after returning the control to the player?
Thanks

any answer?

Easy:

  1. Unpossess your character from the playercontroller
  2. spawn a new ai controller
  3. possess the pawn with this ai controller
  4. Use “Move To Location” to move the character (uncheck Use Pathfinding if you’re not using a nav mesh)
  5. done

To return to player control:

  1. unpossess the character from the previous ai controller
  2. possess the character with the playercontroller

Finally in find the solution, I used simple move to location on the player controler , without forgetting to define a NavMesh

Thanks, do you have any blue print exemple to umposses your character from the playercontroller ?

Thanks, do you have any blue print exemple to umposses your character from the playercontroller ?