WheelForwardConnectionCount (Property)

From Legacy Roblox Wiki
(Redirected from WheelForwardConnectionCount)
Jump to navigationJump to search
WheelForwardConnectionCount
Property Int WheelForwardConnectionCount
Description The amount of times the WheelForward event was connected.
Member of PlayerMouse









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

   end
end )