local Settings = {
    AI = {
        AppearanceChance = 10,
        AgressiveChance = 5,
        AILevel = 0,
        Locked = false
    }
}

local timer = 12

repeat
    timer = timer + 1
until timer == 60

if timer == 60 then
    print("Round win")
end

local function GoldenBearAI(AILevel, Locked)
    Settings.AI.AILevel = AILevel
    
    repeat
        if Settings.AI.AILevel >= 20 then
            local EasterEgg = math.random(1, Settings.AI.AgressiveChance)
            
            if EasterEgg >= Settings.AI.AgressiveChance then
                print("IT'S ME (AgressiveChance)")
            end
        end
        
        if Settings.AI.AILevel >= 15 then
            local EasterEgg = math.random(1, Settings.AI.AppearanceChance)
        
            if EasterEgg >= Settings.AI.AppearanceChance then
                print("IT'S ME")
            end
        end
    until timer == 60
end

GoldenBearAI(16, false)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: