Quick one here.
Usually the way I add to a variable is:
Value = Value + 1
but I remember reading that another way to do it would be:
Value + 1
Which looks way better in my opinion. Though it doesn't work, is there something minute I'm missing or am I getting my languages mixed up?
Ive already tried searching it up but I haven't found anything related.
You are Programming in LUA, I believe that the only that to add Anything to a Variable it the way
Value = Value + 1
I don't believe that there is any other way to do that.