using UnityEngine; public class LookAtCamera : MonoBehaviour { private void LateUpdate() { transform.LookAt(Camera.main.transform); } }