WheelBackwardConnectionCount (Property)

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









Example
game.Players.LocalPlayer.PlayerMouse.Changed:connect( function( property )
   if property == "WheelBackwardConnectionCount" then
      print( "The Player has scrolled backwards " .. game.Players.LocalPlayer.PlayerMouse.WheelBackwardConnectionCount .. " times." )

   end
end )