Math Puzzle

Solve Equation to gain access.

-- Math Puzzle Lock
RegisterCommand('testmath', function()
    exports['moon-ui']:OpenMathPuzzleLock(function(success)
        if success then
            print('Math puzzle solved! Access granted.')
            -- Add your logic here for successful puzzle completion
        else
            print('Math puzzle failed! Access denied.')
            -- Add your logic here for failed puzzle attempt
        end
    end)
end)

Last updated