-- Get the vehicle in which the player is currently seated
local vehicle = GetVehiclePedIsIn(PlayerPedId(), false)
-- Get the model of the vehicle
local model = GetEntityModel(vehicle)
-- Get the display name of the vehicle model
local displayName = GetDisplayNameFromVehicleModel(model)
-- Get the label text for the audio conversation associated with the display name
local label = GetFilenameForAudioConversation(displayName)
-- Print the label text
print(label)