Recomendation: Use a GameObject with a collider and rigidbody and attach a script with
// On the update method
Vector3 pos = Camera.main.ScreenToWorldPoint(Input.mousePosition);
pos.z = 0;
_rigidbody.velocity = (pos - transform.position) * dragSpeed;
It should work fine