So i am trying to use the turn clock script and it seems to work except it will not play the sound. I am trying to figure out what the name of the jukebox sounds need to be so it will synch up with the script. I am sure its plain as day but I do not know enough about coding to just pick out the name from the other stuff. Now the code says - async function ClockRun(time, message){ if (time <= 0){ return; } sendChat("TurnClock", "!Sound: Ticking Clock"); _.each(message.selected,function (o) { getObj(o._type,o._id).set("status_stopwatch", time); }); for (time; time >0; time --){ await sleep(1000); _.each(message.selected,function (o) { getObj(o._type,o._id).set("status_stopwatch", (time - 1)); });} _.each(message.selected,function (o) { getObj(o._type,o._id).set("status_stopwatch", false); }); sendChat("TurnClock", "!Sound: Buzzer"); }