Eu reescrevi esse código várias vezes e não consegui arrastar até o inspetor, tentei baixar o Visual Studio e escrever nele, e não deu certo
o erro que aparecia:
can't add script component ' controlaJogador' because the script class cannot be found. Make sure that there are no compile errors and that the file name and class name match
o código:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ControlaJogador : MonoBehaviour
{
// Update is called once per frame
void Update()
{
transform.Translate(Vector3.forward);
}
}