I managed to add Free roam and bike theme songs with the following code, however, when getting chased by authority, it keeps playing my added song... When in fighting too. Any help?
function musicmod()
while true do
Wait(0)
if PlayerIsInAnyVehicle() then
SoundPlayStream("MS_TenementsMid.rsm", 1)
elseif not PlayerIsInAnyVehicle() then
SoundPlayStream("MS_TenementsLow.rsm", 1)
end
end
end