π§βπ» Exports
All exports are for client-side usage only!
Drilling minigame
The following export will start the normal drilling minigame and returns with results!
exports['wizard-drilling']:StartDrilling(function(result)
if result then
print("success")
else
print("failed")
end
end)
Vault Drilling minigame
The following export will start the vault drilling minigame and returns with results!
You have to provide the number of discs for drilling at numdisc
local numdisc = 4
exports['wizard-drilling']:StartVault(numdisc, function(result)
if result then
print("success")
else
print("failed")
end
end)
Vault Laser minigame
The following export will start the vaukt laser minigame and returns with results!
You have to provide the number of discs for lasering at numdisc
local numdisc = 4
exports['wizard-drilling']:StartLaser(numdisc, function(result)
if result then
print("success")
else
print("failed")
end
end)
Last updated