Button2UpConnectionCount (Property)

From Legacy Roblox Wiki
Revision as of 20:20, 24 March 2011 by >ArceusInator (New page: {{CatUp|Properties}} <onlyinclude>{{Property |name = Button2UpConnectionCount |property = Int ''Button2UpConnectionCount'' |description = Returns ...)
Jump to navigationJump to search
Button2UpConnectionCount
Property Int Button2UpConnectionCount
Description Returns the amount of times the right mouse trigger was connected by being released.
Member of PlayerMouse










Example
game.Players.LocalPlayer.PlayerMouse.Changed:connect( function( property )
   if property == "Button2UpConnectionCount" then
      print( "The Player has released the Right Mouse Button " .. game.Players.LocalPlayer.PlayerMouse.Button2UpConnectionCount .. " times." )

   end
end )