using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayAudio : MonoBehaviour { public AudioSource Aud; public void PlayAud () { Aud.Play(); } }