Ret Macro not working with 2nd AOE macro

It works fine with just the ‘Ret’ but breaks when I add the second macro. Any help would be great!

local _, Sequences = … – Don’t touch this

Sequences[‘Ret’] = {
PreMacro = [[
/targetenemy [noharm][dead]
]],
‘/cast Crusader Strike’,
‘/cast Judgment’,
‘/cast Exorcism’,
PostMacro = [[
/cast Final Verdict
/startattack
/script UIErrorsFrame:Hide();
]],
}

Sequences[‘RetAOE’] = {
PreMacro = [[
/targetenemy [noharm][dead]
]],
‘/cast Hammer of the Righteous’,
‘/cast Judgment’,
‘/cast Exorcism’,
PostMacro = [[
/cast Final Verdict
/startattack
/script UIErrorsFrame:Hide();
]],
}

Try this. Same as you posted just edited in notepad++. See if it works. Oh and get notepad++. only edit these macros in that.

local _, Sequences = … — Don't touch this

Sequences['Ret'] = {
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/cast Crusader Strike',
'/cast Judgment',
'/cast Exorcism',
PostMacro = [[
/cast Final Verdict
/startattack
/script UIErrorsFrame:Hide();
]],
}

Sequences['RetAOE'] = {
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/cast Hammer of the Righteous',
'/cast Judgment',
'/cast Exorcism',
PostMacro = [[
/cast Final Verdict
/startattack
/script UIErrorsFrame:Hide();
]],
}