Combination Lock

When the circle reaches the right place, it will start moving and after 5 seconds the lock will open.

-- @param1 difficulty (easy, medium, hard)

local success = exports['rm_minigames']:combinationLock("easy")
if success then
    print("SUCCESS")
else
    print("FAILED")    
end

Last updated