I know that you can drag and drop this file from the editor into AudioClip manually, but I have 70 zones and this is hard. I tried it does not work:
public AudioClip Music void Start(){ Music = AudioClip.Create("Audio/Goat.mp3", samplerate * 2, 1, samplerate, true); if (Music != null) { GetComponent<AudioSource> ().clip = Music; GetComponent<AudioSource> ().Play (); } }