> For the complete documentation index, see [llms.txt](https://speedtutoruk.gitbook.io/themedkeysystem/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://speedtutoruk.gitbook.io/themedkeysystem/support/where-are-inputs-located.md).

# Where are Inputs located?

### TKInteractor script

This will have the KeyCode reference for the system

### EmblemItem script

<pre class="language-csharp"><code class="lang-csharp"><strong>void PickupInput()
</strong>{
    if (canInteract)
    {
        if (Input.GetKeyDown(interactKey))
        {
            ItemAction();
        }
     }
}
</code></pre>

### EmblemInventory script

```csharp
private void Update()
{
    if (Input.GetKeyDown(openInventoryKey))
    {
        OpenInventory();
    }
}
```
