Just remove "" and use syntax instead of spacing~
For example:
if on clicked & Price <= "Money"
Subtract "SpeedIncrease Price" from Money~
Change to:
if on clicked & Price <= Money
Subtract SpeedIncrease.Price from Money~
"" is for String~
If you add it, the value will become String~
Hope it help~