GM:PlayerButtonUp
This hook is predicted. This means that in singleplayer, it will not be called in the Client realm.
Description
Called when a player releases a button.
This will not be called if player has a panel opened with keyboard input enabled, use PANEL:OnKeyCodeReleased instead.
Arguments
Example
Prints the person who released the key.
hook.Add( "PlayerButtonUp", "ButtonUpWikiExample", function( ply, button )
if CLIENT then
if ( IsFirstTimePredicted() ) then print( ply:Nick() .. " released " .. input.GetKeyName( button ) ) end
else
print( ply:Nick() .. " released " .. button )
end
end)