

스크립트를 추가 하려고 하니 이런 식으로 오류가 뜹니다 찾아보니 스크립트와 클레스 명이 달라서 추가가 안된다고 하는데
저의 스크립트 명이 이 상태이고

이게 저의 프로그램 상태인데 클래스명도 같고 뭐가 문제인지모르겠습니다.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class startbotton : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void GameStart()
{
SceneManager.LoadScene("MainScene");
}
}
