local a = 1
local b = 1
local c = 0
repeat
    a = a + (1 * (b * 5.5) * (c * 25))
    c = c + math.pow(a, 0.5)
    if c >= 100 then
        b = b + math.pow(b, 0.1)
        c = c - 100
    end
    if c >= 10000 then
        b = b + math.pow(b, 0.1) * 3
        c = c - 10000
    end
    if c >= 1000000 then
        b = b + math.pow(b, 0.1) * 7
        c = c - 1000000
    end
     if c >= 10000000 then
        b = b + math.pow(b, 0.1) * 25
        c = c - 10000000
     end
     if c >= 100000000 then
        b = b + math.pow(b, 0.1) * 55
        c = c - 100000000
     end
if c >= 10000000000 then
        b = b + math.pow(b, 0.1) * 120
        c = c - 10000000000
    end
    print("----------")
    print("Num1: ", math.floor(a))
    print("Num2: ", math.floor(b))
    print("Cash: ", math.floor(c))
until false









Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: