<a href="https://app.roll20.net/forum/post/9392616/deleting-all-handouts-from-player-journals#newtopic" rel="nofollow">https://app.roll20.net/forum/post/9392616/deleting-all-handouts-from-player-journals#newtopic</a> I used this script from the post above to remove all player handouts but now I have new players that I want to show these handouts too and I can't. I can show the tokens though. :( on('ready', () => { log(`removeHandout bot is ready...`); on('chat:message', (msg) => { if (msg.type === 'api' && msg.content.search(/^!handoutRemove/) !== -1) { try { let counter=0; handoutArray = _.map(findObjs({type: 'handout'}),c => c.get('_id')); log(`${handoutArray.length} handouts found...`) handoutArray.forEach(entry => { getObj('handout',entry).set('inplayerjournals', ' '); log(`${getObj('handout',entry).get('name')} removed from players' Journals...`); counter ++; }); sendChat('handoutBot',`${counter} handouts processed.`) } catch { log(`Something went wrong, no handouts in array.`); } } else {return} }) })