When I load level 2 (scene) I get an error of saying the value cannot be null but it isn’t null
this is script
private void Level2Loaded(Scene scene, LoadSceneMode mode)
{
if (scene != null && level2Talk == null)
{
if (scene.name == level2Name)
{
level2Talk.Play();
}
}
}