SetPlayerLipMovement: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Client|1.0.3}} {{FuncDescription|Makes the lips of a player look like they are talking for a second. To be used in OnPlayerTalking.}} {{FuncSyntax|SetPla..." |
No edit summary |
||
Line 19: | Line 19: | ||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
*[[SetPlayerLipMovement]] | |||
*[[OnPlayerTalking]] |
Latest revision as of 18:46, 30 August 2020
Description
Makes the lips of a player look like they are talking for a second. To be used in OnPlayerTalking.
Syntax
SetPlayerLipMovement(player)
Parameters
- player
The player identifier.
Return Value
- Returns true on success.
Example
AddEvent("OnPlayerTalking", function(player)
--AddPlayerChat("TALKING: "..player)
SetPlayerLipMovement(player)
end)