No matter what I do I cannot get this error to go away, I have checked spelling. Listed below is my current script. I am new to using C# so I may just be making a noob mistake that I cannot see
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RubyController : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
float horizontal = Input.GetAxis(“Horizontal”);
Debug.Log(horizontal);
Vector2 position = transform.position;
position.x = position.x + 0.1f * horizontal;
transform.position = position;
}
}