# InvokerLib Docs

<figure><img src="https://2482928873-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F92DTZJbjD8jMmnxqNKds%2Fuploads%2FOCZgQHfFAkcxUwok3BWY%2Fimage.png?alt=media&#x26;token=b7ee7625-d4f9-4e3b-b5a7-ff52ea87a8cb" alt=""><figcaption></figcaption></figure>

## Getting Started

### Loading the Library

```luau
local InvokerLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/meepodota/invokerlib/refs/heads/main/mainlib.lua"))()
```

### Creating a Window

```luau
local Window = InvokerLib:CreateWindow({
    Title = "My Hub",           -- Window title
    Size = UDim2.new(0, 750, 0, 500),  -- Window size
    ToggleKey = Enum.KeyCode.RightControl  -- Key to toggle visibility
})
```
