Move

Event of: PlayerMouse
Tags:  instance

Fires when the mouse is moved

Parameters
Name Type Description
Example
local mouse = Players.LocalPlayer.mouse

mouse.move:connect(function()
    print ('The mouse has moved to ( ' .. mouse.x .. ', ' .. mouse.y .. ' )')
end)