what have I written wrong?

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class jugador : MonoBehaviour

{
    public float Speed = 1.0f;
    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    { 
        float horizontal = Input.GetAxis("Horizontal");
        float vertical = Input GetAxis("Vertical");

        transform.Translade(new Vector3(horizontal, 0.00f, vertical)); * Time.DeltaTime * Speed;
    }
}

Hello. Is this an exam or something? Why dont explain what is happening, where is the rror, which is the eerror code, what you need…

Every error messag says the line of the code where the error is.

And the erorr is at:

     transform.Translade(new Vector3(horizontal, 0.00f, vertical)); * Time.DeltaTime * Speed;

why the ; at

vertical)); * Time.

remove it.

And next time, read the error code, make CLICK on the error code and editor will open Visual Studio exactly at that line…