Wire Cutting

Cut the correct wire based on visual clues

-- Wire Cutting Lock
RegisterCommand('testwire', function()
    exports['moon-ui']:OpenWireCuttingLock(function(success)
        if success then
            print('Correct wire cut! Access granted.')
        else
            print('Wrong wire cut! Access denied.')
        end
    end)
end)

Last updated