> For the complete documentation index, see [llms.txt](https://master-mind-store.gitbook.io/dashboard/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://master-mind-store.gitbook.io/dashboard/paid-release/airdrop/configuration/minigame.md).

# Minigame

Configure the the minigame in your script according to the requirement

Navigate to `mm_airdrop/client/minigame.lua`

#### To Setup Ox Skill Check (default)

```lua
function Airdrop:StartHackMinigame(crate)
    local success = lib.skillCheck('hard', {'w', 'a', 's', 'd'})
    self:OnMinigameEnd(success, crate)
end
```

#### To Setup PS-UI minigame&#x20;

<pre class="language-lua"><code class="lang-lua"><strong>function Airdrop:StartHackMinigame(crate)
</strong>    exports['ps-ui']:Circle(function(success)
        self:OnMinigameEnd(success, crate)
    end, 8, 8)
end
</code></pre>

#### Ox SkillCheck (set by default)
