1 | if key = = "w" then |
2 | script.Spread.Value = 3.5 |
3 | end |
How do I change it so that I can make it add instead of = the value?
You need to make it equal the current value, then add on what you want to it:
1 | if key = = "w" then |
2 | script.Spread.Value = script.Spread.Value + 3.5 |
3 | end |