hi you can try this but i didn't test it
--Client
addEvent("playWinSound", true)
addEventHandler("playWinSound", root,
function(soundFile)
local sound = playSound(soundFile) --play the sound file that comes as a parameter
setSoundVolume(sound, 1)
setSoundMaxDistance(sound, 100)
end
)
--server
function multi_sounds(player, commandName, soundType)
if not (soundType) then return outputChatBox("You must be enter sound type.", player) end --if the player has not entered the soundType, exit immediately
if(soundType == "cops") then --if soundType is "cops" enter here
triggerClientEvent(player, "playWinSound", player, "sirens.mp3")
elseif(soundType == "robbers") then --if soundType is "robbers" enter here
triggerClientEvent(player, "playWinSound", player, "gangsters.mp3")
end
end
addCommandHandler("win", multi_sounds)