Olá, boa tarde!
Fiz passo a passo descrito no video e na hora de inserir o código no personagem me apareceu o seguinte erro:
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
E quando dou play aparece no unity:
all compiler errors have to be fixed before you can enter playmode
Segue o meu código logo em baixo
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);
}
}