Okay, I am creating a game that I intend to have stats that go beyond the roblox limit such as 50 billion all. I do not exactly know how to surpass the basic limit of the roblox 2.7b help would be appreciated. I am still currently learning, Lol.
This is actually relatively easy. Shorten the number. For example, you could do
1 | money / 1000 |
The 50 billion dollars go down to 50 million, which is easier for ROBLOX to save. Make sure you multiply the number once you load the data.
So, when you load it, you would do
1 | myData = myData * 1000 |
Hope this helps!