how to make play button in unity

Code Example - how to make play button in unity

                
                        using UnityEngine.SceneManagement;

public void play()
{
	SceneManager.LoadScene("YourSceneName"); 
}