public override void OnInspectorGUI()
    {
        DrawDefaultInspector();
        TextToSpeech script = (TextToSpeech)target;

        if (GUILayout.Button("PlaySound"))
        {
            script.PlaySound();
        }
    }