For example if a int value is -100 and it touched a part it should turn into positive +100 is there any inverse value in this.?
No but you can implement your own function.
local function IV(v) if type(v) == "number" then return v*-1 end end local num = -2 local num = IV(num) print(num) -- It pritns 2