Because you will want to preserve your Catalog structure, it would be far simpler to copy the cues you want into a playlist group (having deleted) the previous contents of the group.
This script will clear the current cues and copy selected cues into the playlist group cue numbered "BREAKLIST" and start it.
tell application id "com.figure53.QLab.5" to tell front workspace
set theSelected to (selected as list)
--Check there is a valid selection (at leat one audio cue)
if the (count of theSelected) is 0 then
display dialog "No cues selected"
return
end if
repeat with eachcue in theSelected
if the q type of eachcue is not "audio" then
display dialog "non audio cue selected"
return
end if
end repeat
--clear cues of cue BREAKLIST
set theClear to cues of cue "BREAKLIST" whose q type is not "memo"
repeat with eachcue in theClear
set eachCueID to uniqueID of eachcue
delete cue id eachCueID of parent of eachcue
end repeat
--copy and paste selected cues
tell application "System Events" to tell application process "QLab" to keystroke "c" using command down
delay 0.5
set the selected to cue "PASTEHERE"
delay 0.5
tell application "System Events" to tell application process "QLab" to keystroke "v" using command down
delay 0.5
--play
start cue "BREAKLIST"
end tell

Screen Recording attached
Mic