Movement of particle towards an object

Im trying to move a particle towards my player .... Im pretty new in unity so any help would be greatly appreciated? Right now this class just moves the particle in a specific direction

using UnityEngine;
using System.Collections;

public class Particle : MonoBehaviour 
{
    public GameObject particle;
    // Update is called once per frame
    void Update () 
    {
        particle.transform.Translate(1, 0, 1);
    }
}

you don't have to use a complicated script, you could just modify the partical emitter to change which direction the particles move, and change the tangent velocity to get aa vortex style movement out of your particles. just click on whatever you put your particle emitter component on, go to the inspector tab, and scroll down to the emitter component and edit it from their. its MUCH easier than a script. trust me.