# 🧑‍💻 Exports

{% hint style="danger" %}
All exports are for client-side usage only!
{% endhint %}

## Drilling minigame

The following export will start the normal drilling minigame and returns with results!

```lua
exports['wizard-drilling']:StartDrilling(function(success)
    if success then
        print("success")
    else
        print("failed")
    end
end)
```

***

## Vault Drilling minigame

The following export will start the vault drilling minigame and returns with results!

{% hint style="warning" %}
You have to provide the number of discs for drilling
{% endhint %}

```lua
local numdisc = 4
exports['wizard-drilling']:StartVault(numdisc, function(success)
    if success then
        print("success")
    else
        print("failed")
    end
end)
```

***

## Vault Laser minigame

The following export will start the vaukt laser minigame and returns with results!

{% hint style="warning" %}
You have to provide the number of discs for lasering
{% endhint %}

```lua
local numdisc = 4
exports['wizard-drilling']:StartLaser(numdisc, function(success)
    if success then
        print("success")
    else
        print("failed")
    end
end)
```
