[HELP] How would I add a sound

I am looking in OpenIV and have found sounds that would work good for what I am making here Is an example of a sound I want (garage_elevator.awc). Is it even possible? this is what I have so far when it comes to the sound
if IsControlJustReleased(1, key_to_teleport_down) then
Citizen.Wait(100)
PlaySoundFromCoord(-1, “ELEVATOR_VOICE_GOING”,-2361.00,3249.20,31.80, “garage_elevator”, 1 , 100.0 , 0);
Citizen.Wait(1000)
if IsPedInAnyVehicle(player, true) then
SetEntityCoords(GetVehiclePedIsUsing(player), loc2.x, loc2.y, loc2.z)

                else
                    SetEntityCoords(player, loc2.x, loc2.y, loc2.z)
                    
                    
                    
                end
            end