MoveConnectionCount (Property)

MoveConnectionCount
Property Int MoveConnectionCount
Description The amount of times the Move event was connected.
Member of PlayerMouse









Example
game.Players.LocalPlayer.PlayerMouse.Changed:connect( function( property )
   if property == "MoveConnectionCount" then
      print( "The Player has moved the mouse " .. game.Players.LocalPlayer.PlayerMouse.MoveConnectionCount .. " times." )

   end
end )