As in, play to all?
for(%i=0;%i<ClientGroup.getCount();%i++)
{
%cl = clientgroup.getobject(%i);
if(!%cl.isSoundPlaying)
{
%cl.play2d(nametoID(musicData_Jungle));
%cl.isSoundPlaying = 1;
}
}
Try that. If it says that play2d doesn't exist or it just doesn't work, you'll need client commands to play the song.
That code, or an edit of it, could go when a client spawns or when a connect is recieved.