I want the player mark a place and then go there. I have some images to explain better
Develop games in your browser. Powerful, performant & highly capable.
Rex's MoveTo plugin is good for this. You just specify an x,y or object to move to and it will move in a line to it. construct.net/en/forum/extending-construct-2/addons-29/behavior-moveto-40701
Aside from this, you could have the moving sprite as a bullet and specify its angle of motion towards touch area. Also you could use Pathfinding to find a path to the specified location (touch.x,touch.y)
Thanks! I'll try use bullet behavior :)