KeyUpConnectionCount (Property)

KeyUpConnectionCount
Property Int KeyUpConnectionCount
Description The amount of times the KeyUp event was connected.
Member of PlayerMouse









Example
game.Players.LocalPlayer.PlayerMouse.Changed:connect( function( property )
   if property == "KeyUpConnectionCount" then
      print( "The Player has released " .. game.Players.LocalPlayer.PlayerMouse.KeyUpConnectionCount .. " keys." )

   end
end )