Skip to content

onClientPlayerVoiceResumed

Client-side

This event is triggered when a player's voice sound is resumed using setSoundPaused.

Parameters

string reason
  • reason: the reason for the pause, this can be only "resumed".

Source

element: The source of this event is the player whose voice got resumed.

Code Examples

client

This example outputs nick of whoever's voice is resumed.

addEventHandler("onClientPlayerVoiceResumed", root,
function ()
outputChatBox(getPlayerName(source) .. "'s voice got resumed.")
end
)

See Also