When AudioSource was turned off, the sound continued to play, only lowering the volume.
[RequireComponent(typeof(AudioSource))] public class test : MonoBehaviour{ AudioSource audio1; void Start () { audio1 = GetComponent<AudioSource>(); audio1.Stop(); }}