Help with objetcs/kinematics movement

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By DarlesLSF

How can I move an object/kinematicBody to a certain point?
Ex.: from x = 100 & y = 50
to x = 200 & y = 100

:bust_in_silhouette: Reply From: Eric Ellingson

position = Vector2(200, 100) if operating on itself, or if you have a reference to the node, then someNodeVariable.position = Vector2(200, 100)