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

# setrbxclipboard

> Writes a required string to the Windows clipboard using Roblox Studio clipboard data format. The function returns no status value, whether the clipboard write succeeds or fails.

<div className="real-function-page">
  ```lua theme={null}
  setrbxclipboard(text: string)
  ```

  ## 인수

  <ParamField path={"text"} type={"string"} required>
    String written to the Roblox Studio clipboard data format.
  </ParamField>

  ## 예제

  Write a string with Real's registered Roblox Studio clipboard format.

  ```lua theme={null}
  setrbxclipboard("Real clipboard data")
  ```
</div>
