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

> Mueve el mouse usando Windows absolute mouse input cuando la Roblox window esta activa. Los argumentos x e y se comprueban como Lua numbers y se convierten con integer conversion. Real los trata como coordenadas relative to active foreground window client area, suma la posicion en pantalla de esa client area con ClientToScreen, los escala usando GetSystemMetrics(SM_CXSCREEN/SM_CYSCREEN) - 1 e integer math, y luego llama a mouse input con the requested mouse action. Si isrbxactive seria false, la function vuelve sin enviar input.

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

  ## Argumentos

  <ParamField path={"x"} type={"number"} required>
    Client-area X coordinate leida como Lua number y convertida con integer conversion antes del paso de screen-position y absolute-input scaling.
  </ParamField>

  <ParamField path={"y"} type={"number"} required>
    Client-area Y coordinate leida como Lua number y convertida con integer conversion antes del paso de screen-position y absolute-input scaling.
  </ParamField>
</div>
