Safe Cracking

Rotate a dial and find the correct combination.

-- Safe Cracking Lock
RegisterCommand('testsafe', function()
    local correctCombination = {25, 50, 75} -- Three-number combination
    exports['moon-ui']:OpenSafeCrackingLock(correctCombination, function(success)
        if success then
            print('Safe cracked! Access granted.')
        else
            print('Wrong combination! Access denied.')
        end
    end)
end)

Last updated