Hello, I am attempting to implement a feature where toggling a checkbox on a character sheet displays/removes a custom status marker on the associated token on the map. I've tried multiple times, referencing the Roll20 API documentation and popular scripts like TokenMod and CombatMaster, but I'm consistently failing... My goal is: Use checkbox fields on the character sheet (e.g., attr_status_stun, attr_status_disarmed with value="1"). When a checkbox is checked, a custom marker appear on the token linked to that character. When unchecked the marker should be removed. However changing the checkbox state does not update the token markers at all. I structured status effect checkboxes as <input type="checkbox" name="attr_status_stun" value="1">. And my API script caches all token markers (including custom ones) by their tag and id into a markerCache object using Campaign().get('token_markers'). It listens for changes on each status effect attribute individually using on('change:attribute:attributename') and manipulates the token's statusmarkers string using the cached markerId. Is the approach I'm taking the correct way to implement this functionality for custom markers? Any help would be greatly appreciated.