if key=="w" then script.Spread.Value=3.5 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:
if key=="w" then script.Spread.Value = script.Spread.Value + 3.5 end