Воспроизвести звук

хочу сделать, что бы проигрывался саунд в определенное время. вроде все правильно, но не работает (контент есть)

local function ring()
	local snd = CreateSound( LocalPlayer(), "garrysmod/addons/bell-content/sound/17.mp3" )
	snd:PlayEx( 0, 100 )
	snd:ChangeVolume( 1, 0.4 )
	timer.Simple( 6, function()
		snd:ChangeVolume( 0, 1 )
		timer.Simple( 2, function()
			snd:Stop()
		end)
	end)
end

синтаксическая ошибка: Line 2: unexpected mp3”
что за символ такой ? используй "

local function ring()
    local snd = CreateSound(LocalPlayer(), "garrysmod/addons/bell-content/sound/17.mp3")
    snd:PlayEx(0, 100)
    snd:ChangeVolume(1, 0.4)

    timer.Simple(6, function()
        snd:ChangeVolume(0, 1)

        timer.Simple(2, function()
            snd:Stop()
        end)
    end)
end
1 лайк