So I have a problem where I need to use WebStorage, but for a event I only need it to add a number. (The stored key is an integer).
Tried making so:
Click on Button -> Set local key "StoredKey" to "WebStorage.LocalAt(StoredKey) + 1"
But it doesn't seem like C2 accepts me putting in the "+" sign. How would I do if I wanted to add 1 to the stored value?
IE: If key "StoredKey" would currently be 3, when I click my button it would add 1 and it'd be 4