Move Actor (Blueprint)

Within the character blueprint, I can move my player with “Add movement input”. How can i move an actor?

There are many ways to move an Actor, but it all really depends on how you want to move your character. Do you want him to just be wildly thrown from his previous location to another? If so, SetActorLocation or Teleport is great for you. Do you want the character to move to the location over time? If so, you will have to interpolate to the final location; or, in other words, you will need to move the character to a new point, each frame, until the character reaches its final destination over a fixed period of time. This process, specifically in Blueprint, is more heavily explored in this question.

Ok, thanks for the info.