Hey, I'm trying to get my script to print the player's position each time it clicks but it just keeps printing the same initial position
onready var PlayerMan = get_parent().get_node("Player").position
func _input(event):
if event.is_action_pressed('Fire'):
PlayerMan = get_parent().get_node("Player").position
target_position = PlayerMan
print(target_position)