π§βπ» 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(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!
You have to provide the number of discs for drilling
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!
You have to provide the number of discs for lasering
local numdisc = 4
exports['wizard-drilling']:StartLaser(numdisc, function(success)
if success then
print("success")
else
print("failed")
end
end)
Last updated