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

# mousemoverel

> Roblox window가 active일 때 relative delta만큼 mouse를 이동합니다. x 및 y 인수는 Lua numbers로 검사되고 integer conversion로 변환된 뒤 the requested mouse action와 함께 mouse input에 dx 및 dy로 직접 전달됩니다. 이 function은 the requested mouse action를 사용하지 않고 client-area conversion을 수행하지 않으며 아무것도 반환하지 않고 isrbxactive가 false라면 input을 보내지 않고 반환합니다.

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

  ## 인수

  <ParamField path={"x"} type={"number"} required>
    mouse input에 dx로 전달되기 전에 Lua number로 읽고 integer conversion로 변환되는 relative X movement delta입니다.
  </ParamField>

  <ParamField path={"y"} type={"number"} required>
    mouse input에 dy로 전달되기 전에 Lua number로 읽고 integer conversion로 변환되는 relative Y movement delta입니다.
  </ParamField>
</div>
