KeyDownConnectionCount (Property)

From Legacy Roblox Wiki
Revision as of 20:24, 24 March 2011 by >ArceusInator (New page: <onlyinclude>{{Property |name = KeyDownConnectionCount |property = Int ''KeyDownConnectionCount'' |description = The amount of times the [[KeyDown ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
KeyDownConnectionCount
Property Int KeyDownConnectionCount
Description The amount of times the KeyDown event was connected.
Member of PlayerMouse









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

   end
end )