# Mute one sound, play other

**URL:** https://forum.kirupa.com/t/mute-one-sound-play-other/168596
**Category:** Uncategorized
**Created:** [November 8, 2005, 3:54pm UTC](https://forum.kirupa.com/t/mute-one-sound-play-other/168596 "2005-11-08T15:54:24Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![luksy](https://avatars.discourse-cdn.com/v4/letter/l/ec9cab/32.png) [@luksy](https://forum.kirupa.com/u/luksy)
#### Post date: [November 8, 2005, 3:54pm UTC](https://forum.kirupa.com/t/mute-one-sound-play-other/168596/1 "2005-11-08T15:54:24Z")

</div>

if I put…

```auto
music.setVolume(0);
death.start(0,0);

```

…it sets the volume as zero for ALL sounds (even for the death sound which is set to 100%). What’s the trick here?? ☹

I don’t want to put…

```auto
music.stop();

```

…because I want to mute the music and then set it’s volume back to 100 on a certain frame.

How to mute only on sound (named music in my example)
