keithcurtis  said:   Remove every whisper command from the script: change:                  code += `!&#13;/w gm &amp;${ch('{')}template:default${ch('}')}${ch('{')}${ch('{')}name=${ch('@')}${ch('{')}selected|character_name${ch('}')} ${label}${ch('}')}${ch('}')}${ch('{')}${ch('{')}=${ch('@')}${ch('{')}selected${ch('|')}${button}${ch('}')}${ch('}')}${ch('}')})`;  to                   code += `!&#13;&amp;${ch('{')}template:default${ch('}')}${ch('{')}${ch('{')}name=${ch('@')}${ch('{')}selected|character_name${ch('}')} ${label}${ch('}')}${ch('}')}${ch('{')}${ch('{')}=${ch('@')}${ch('{')}selected${ch('|')}${button}${ch('}')}${ch('}')}${ch('}')})`;      and change:                   print += footer ? `\n/w ${caller} ${footer}` : '';                   sendChat(sender, `/w ${caller} ${print}`,null,{noarchive:true});   to                   print += footer ? `${footer}` : '';                   sendChat(sender, `${print}`,null,{noarchive:true});   I haven't tested, but it  should  work...      It works, thank you so much! <3