I can't play my game and I have 999+ errors that won't go away

I have one script but my thing says that I have 999+ errors even though I have one script and three things.

If you write the code here I can help

@haliler921
using UnityEngine;
public class MoveScript : MonoBehaviour
{
// Update is called once per frame
void Update()
{
transform.Translate(Input.GetAxis(“Horizotal”), Input.GetAxis(“Vertical”), 0.0f);
}
}