Sigue la cámara
public Transform player;
public Vector3 offset;
void LateUpdate()
{
transform.position = player.position + offset;
}
Obnoxious Ocelot