Button2UpConnectionCount (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>ArceusInator
New page: {{CatUp|Properties}} <onlyinclude>{{Property |name = Button2UpConnectionCount |property = Int ''Button2UpConnectionCount'' |description = Returns ...
>ArceusInator
New page: {{CatUp|Properties}} <onlyinclude>{{Property |name = Button2UpConnectionCount |property = Int ''Button2UpConnectionCount'' |description = Returns ...
 
(No difference)

Latest revision as of 20:20, 24 March 2011

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 )