// Jimmy Vegas Unity Tutorials // This Script is for moving your camera using System.Collections; using System.Collections.Generic; using UnityEngine; public class CameraFollow : MonoBehaviour { public GameObject player; void Update() { transform.LookAt(player.transform); } }