The number vectorDist returns goes up the farther you move away from your target. I want a function that goes down the farther you move away from your target.
Do some math, depending on where you want zero to be
200 - %vectorDist would put the zero at 200 units away
If you want it to be non-linear, do
200 / vectorDist% (You probably shouldn't use this)