Well Can You Help Me Why This wont Work ?
This The Script ,
Its' On starter gui
, Screen Gui
, Script
if script.Parent.Parent.Parent.leaderstats.Cash.Value == -2147483648 then script.Parent.Parent.Parent.leaderstats.Cash.Value = 250000000 end
-snip-
If you want to check if a number is negative, check if it is less than 0:
if script.Parent.Parent.Parent.leaderstats.Cash.Value < 0 then script.Parent.Parent.Parent.leaderstats.Cash.Value = 2147483647 --You were right about that being too big, by the way. end
Honestly, though, you should just use sane values so you don't have to deal with integer wrapping, or just use Strings.