chance?
local chance=100
local times=500
local i=0;math.randomseed(os.time())for j=0,times-1 do;local l=math.random(1,chance)if l==1 then;i=i+1;end;end;print("done")print(times.." tries for a 1/"..chance.." chance got")print(i)INFO
local chance=100
local times=500
local i=0;math.randomseed(os.time())for j=0,times-1 do;local l=math.random(1,chance)if l==1 then;i=i+1;end;end;print("done")print(times.." tries for a 1/"..chance.." chance got")print(i)