> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# mousemoveabs

> Roblox window が active のとき、Windows absolute mouse input を使ってマウスを移動します。x と y 引数は Lua numbers として検査され、integer conversion で変換されます。Real はそれらを active foreground window client area に対する座標として扱い、ClientToScreen でその client area の screen position を加算し、GetSystemMetrics(SM_CXSCREEN/SM_CYSCREEN) - 1 と integer math でスケーリングしてから、the requested mouse action 付きの mouse input を呼び出します。isrbxactive が false になる場合、この function は input を送信せずに戻ります。

<div className="real-function-page">
  ```lua theme={null}
  mousemoveabs(x: number, y: number)
  ```

  ## 引数

  <ParamField path={"x"} type={"number"} required>
    Lua number として読み取られ、screen-position と absolute-input scaling の前に integer conversion で変換される client-area X coordinate。
  </ParamField>

  <ParamField path={"y"} type={"number"} required>
    Lua number として読み取られ、screen-position と absolute-input scaling の前に integer conversion で変換される client-area Y coordinate。
  </ParamField>
</div>
