> ## Documentation Index
> Fetch the complete documentation index at: https://eco-804c21df.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Input Functions

> Functions related to inputs/display

### Set Clipboard

```lua theme={null}
setclipboard(content: string) : () <void>
```

<Info>
  setclipboard, setrbxclipboard, set\_clipboard, copystring
</Info>

<Note>
  This does not set the `content` to the real clipboard, only in **Roblox**.
</Note>

Sets the `content` to the rbx clipboard.

### Get Clipboard

```lua theme={null}
getclipboard() : () <void>
```

<Info>
  getclipboard, getrbxclipboard, get\_clipboard
</Info>

<Note>
  This does not get the content of the real clipboard, only in **Roblox**.
</Note>

Gets the content of the clipboard and returns it.

### Is Key Down

```lua theme={null}
iskeydown(KeyCode: number) : bool <boolean>
```

<Info>
  iskeydown, is\_key\_down
</Info>

Returns a boolean indicating the condition of the `KeyCode`.

### Set Fps Cap

```lua theme={null}
setfpscap(NewCap: number) : () <void>
```

<Info>
  setfpscap, set\_fps\_cap
</Info>

Sets the Roblox fps cap to the given `NewCap`, giving 0 will set the cap to inf.

### Get Fps Cap

```lua theme={null}
getfpscap() : FpsCap <number>
```

<Info>
  getfpscap, get\_fps\_cap
</Info>

Returns the Roblox fps cap.

### Is Rbx Active

```lua theme={null}
isrbxactive() : bool <boolean>
```

<Info>
  isrbxactive, isgameactive, validfgwindow
</Info>

Returns a boolean indicating the condition of the Roblox window focus condition.

### Get Screen Resolution

```lua theme={null}
getscreenres() : ScreenResolution <number>
```

<Info>
  getscreenres, get\_screen\_res, getscreenresolution, get\_screen\_resolution
</Info>

Returns the Roblox screen resolution.
