This script here works perfect and couldn't be better:
[list]
[*]Code ON *:CONNECT: IF ($server == tmi.twitch.tv) CAP REQ :twitch.tv/commands twitch.tv/tags twitch.tv/membership

[*]Code ON *:TEXT:!addme:#: {
IF (($msgtags(subscriber).key) && (!$istok(%sub_list,$nick $+ $chr(44),32))) {
SET %sub_list %sub_list $nick $+ $chr(44)
MSG $chan $nick $+ , you have been added to the !list.
}
}

ON *:TEXT:!removeme:#: {
IF ($istok(%sub_list,$nick $+ $chr(44),32)) {
SET %sub_list $remtok(%sub_list,$nick $+ $chr(44),0,32)
MSG $chan $nick $+ , you have been removed from the !list.
}
}

ON *:TEXT:!list:#: MSG $chan $left(%sub_list,-1)


The only thing I forgot to mention was that I need a moderator script that can control the !list (So moderators can manually !addme and !removeme) and I need a broadcaster ONLY command that can reset the entire list with !reset.....is this possible?