local player = game.Players.LocalPlayer local user = player.DisplayName local mainFrame = workspace.Billboard.gui.frame.main.Frame local frameText = workspace.Billboard.gui.frame.main.FrameText local answerBoard = player.PlayerGui.answerUI.MemoryBoard while true do local text = frameText.Text if text == "Memorize this pattern!" then for _, btn in ipairs(mainFrame:GetChildren()) do if btn:IsA("TextButton") and btn.BackgroundColor3 == Color3.fromRGB(0, 255, 0) then btn.TextScaled = true end end elseif text == user .. "'s pattern:" then local mainButtons = {} local answerButtons = {} for _, btn in ipairs(mainFrame:GetChildren()) do if btn:IsA("TextButton") then table.insert(mainButtons, btn) end end for _, btn in ipairs(answerBoard:GetChildren()) do if btn:IsA("TextButton") then table.insert(answerButtons, btn) end end for i = 1, math.min(#mainButtons, #answerButtons) do if mainButtons[i].TextScaled then answerButtons[i].Text = "✅" answerButtons[i].TextScaled = true end end end wait(0.1) end