voicechat. unpause Synchronous
Resume a paused clip from its current position. Use it after voicechat.pause when the user is ready to hear the rest.
Luau
voicechat.unpause() -> ()Parameters
This function takes no arguments.
Returns
()No values.
Usage notes
Calling it while nothing is paused does not start a new file; call voicechat.play for that.
Example
Luau
local status = voicechat.getstatus()
if status.available and status.state == "paused" then
voicechat.unpause()
end