> ## 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

> Перемещает мышь через Windows absolute mouse input, когда Roblox window active. Аргументы x и y проверяются как Lua numbers и преобразуются через integer conversion. Real рассматривает их как координаты relative to active foreground window client area, добавляет screen position этой client area через ClientToScreen, масштабирует их с помощью GetSystemMetrics(SM_CXSCREEN/SM_CYSCREEN) - 1 и integer math, затем вызывает mouse input с the requested mouse action. Если isrbxactive вернул бы false, function возвращается без отправки input.

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

  ## Аргументы

  <ParamField path={"x"} type={"number"} required>
    Client-area X coordinate, читаемая как Lua number и преобразуемая через integer conversion перед этапом screen-position и absolute-input scaling.
  </ParamField>

  <ParamField path={"y"} type={"number"} required>
    Client-area Y coordinate, читаемая как Lua number и преобразуемая через integer conversion перед этапом screen-position и absolute-input scaling.
  </ParamField>
</div>
