So I’m following this tutorial: How to Change Scenes Using a Trigger in Unity 5 - YouTube and the part where I’m getting stuck is that the text doesn’t appear and pressing either E or Enter doesn’t work.
I was watching in his video that in input settings he has an extra option called “use” (which is where I’m sure the problem might be coming from but I’m not sure) but I also have a pause screen canvas that might also be causing some interference(which again is just a guess as I’m not a pro)
I can’t upload or share any part of the game due to copyright reasons but I can take screenshots of settings and such if that helps 
Hi
Try this
using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;
public class LoadSceneOnEnter : MonoBehaviour
{
public string SceneName;
void OnTriggerEnter(Collider other)
{
if (other.tag == "AnythingYouLike")
{
SceneManager.LoadScene(SceneName); // loads scene When player enter the trigger collider
}
}
void OnTriggerStay(Collider other)
{
if (other.tag == "AnythingYouLike")
{
if (Input.GetKeyDown(KeyCode.E)) // loads scene on user input when in collider
{
SceneManager.LoadScene(SceneName);
}
}
}
void Update()
{
if (Input.GetKeyDown(KeyCode.E)) // loads scene on user input From anywhere
{
SceneManager.LoadScene(SceneName);
}
}
}
and as for your input