Okay everyone, I am an experienced web dev and I've been trying to put together a "/roll" builder for a text box but I can't even get the simplest of things to work. <!--Sheet Workers --> <script type="text/worker"> on('sheet:opened', function(){ console.log("Sheet Opened!"); }); on("clicked:activate", function() { console.log("Activate button clicked!"); }); </script> <div class=containerRoller> <div> <button type="action" name="act_activate">Activate!</button> <button class="reset" type="action" name="act_reset" data-i18n-title="reset-all" title="">reset</button> </div> </div> I can't even get these two scripts to fire, either on button click or sheet open to output something to the console log, what am I missing? Ultimately, I am looking to create a sheet that has buttons for dice, that add dice to a poll in which you can then roll that pool. This is for Cortex Prime. So if I hit a D8 in one column, then a d10 in another column and then a d6 for a third column, a text field would read /roll d8+d10+d6 Then you hit the roll button and it rolls the pool.