OnPlayerToggleAim
From Onset Developer Wiki
Description
Called when a (local) player presses the key to go in or out of the aim state. You can return false in this event to prevent the player from aiming.
Syntax
OnPlayerToggleAim(toggle)
- toggle
true if the player wants to aim, false otherwise.
Example
AddEvent("OnPlayerToggleAim", function(toggle)
if toggle == true then
return false -- do not allow the player to aim
end
end)