Attach script to your object, which will look like this:
func _process(delta):
position += Vector2(move_x, move_y)
Replace movex and movey with the speed you want to move (e.g. Vector2(1, 0) to go right). Since it's only 2 lines, you may make the script built-in.