you need to do so in this script after spawning music stop
function onScriptLoad()
{
spawn_Sound <- null;
}
function onClientRequestClass( player )
{
if ( !spawn_Sound )
{
spawn_Sound = FindSound( "welcome2.mp3" );
if ( spawn_Sound )
{
spawn_Sound.Open();
spawn_Sound.Play();
return 1;
}
}
else
{
spawn_Sound.Open();
spawn_Sound.Play();
return 1;
}
}