I’m pretty new to coding in C# and developing games in Unity, and i don’t know what this thing is/means. I only tried making a game over screen and this popped up and idk what to do, I’ll send the code down below
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
public class GameOverScreen : MonoBehaviour
{
public void RestartButton()
{
SceneManager.LoadScene(“Game”);
}