You are on page 1of 1

resetstats()

chance = math.random(1500,4550)/100
multiplier = 2
base = balance/1000000
nextbet = base
target = 1000
bethigh = true
roll = 0

function dobet()

chance = math.random(1500,4550)/100
roll+=1

print("Profit to go: "..target - balance)


print(" ")

if balance> target then


print(" ")
print(" TARGET HIT ")
print(" ")
stop()
end

if win then

nextbet=base
else
nextbet=previousbet*multiplier

end
end

You might also like