EDIT: SOLVED - check below
I need to update the web storage local key with +1 when the player collides with an object.
So basically I want this:
On collision > WebStorage - Set local key "crowns" to WebStorage.LocalValue("crowns")+1
Problem is, when I add the "+1" it says "type mismatch".
I'm sure there's a bit of code that i need to add before of after.
Solution: I just updated the code to int(WebStorage.LocalValue("crowns"))+1