For Brightness, I have a formula that takes in a value from -255 to 255 and contrast from -100 to 100. What if I wanted to use the same formula but I wanted to convert/adjust the scaling so that I take in a value from 0 to 100 but adjust it for brightness and contrast formula that has different scaling?
That is, e.g.
-255 to 255 and map it to a scale of 0 to 100.
If I understand correctly you want a formula which scales numbers in the range $[-255,255]$ to numbers in the range $[0,100]$. Consider the points in the Cartesian plane $(-255,0), (255,100)$. Two points define a line. The equation of this line represents the conversion formula you are looking for.
So the slope is $\frac{\Delta y}{\Delta x} = \frac{100}{255-(-255)} = \frac{100}{510} = \frac{10}{51}$. Then letting $y = \frac{10}{51}x + b$ and plugging in $(-255,0)$, we get $0 = \frac{-2550}{51} + b \implies b = \frac{2550}{51} = 50$. So your formula is $y = \frac{10}{51}x + 50$.