How do I apply the position found with this line of code to my seeker?

I have found my player tags position, target = GameObject.FindWithTag("Player").transform.position; , but i dont know how to apply it to my seeker. Do i turn it into a Vector or something? Sorry if its a stupid question, I just started coding a few days ago. Thank you in advance!

This is my seeker code:
if (seeker.IsDone()) seeker.StartPath(rb.position, target.position, OnPathComplete);

You’re almost there. target is already a vector. Whenever you access the position of anything, the value you get is always a Vector3, because a Vector3 is just the x, y, and z values of the object along the world axis. So all you need to do is give target directly to seeker.StartPath() like this

target = GameObject.FindWithTag("Player").transform.position;
if(seeker.IsDone()) seeker.StartPath(rb.position, target, OnPathComplete).