So, I am a intermediate builder and a pro scripter. I am trying to figure out how to add number values by 1. Something like this:
script.Parent.NumberValue.Value += 1
But then up comes an error from output, I don't know what I've done wrong. Can somebody please help?
Augmented assignment isn't really a thing in Lua. You have to actually write it out in full:
script.Parent.NumberValue.Value = script.Parent.NumberValue.Value + 1
Lua is weird.