WheelBackwardConnectionCount (Property)

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 )