math.randomseed(os.time()) out = "" for i = 0,10 do for j = 0,10 do r = math.floor(math.random(0,2)) if r==0 then out = out.." " elseif r==1 then out = out.."#" end end print(out) out = "" end