You have 2 options.
-
Make the plane as a child of the camera
-
have a script attached to the plane the looks something like this:
public float distance;
Public Transform cam;void Update () {
transform.position = cam.position + cam.forward * distance;
}
Edit the distance as you wish.