Quando arrasto meu script para inspector do jogador, aparece o seguinte aviso "can´t add script behaviour AssemblyInfo.cs. The script needs to derive from MonoBehaviour!"
Segue meu código
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class controlaJogador : MonoBehaviour
{
void Update()
{
transform.Translate(Vector3.forward);
}
}