لا لازم تسوي جدول وتدخل القيم فية وتطلعها بعدين مثل كذآ :
local TheTable = {}
addCommandHandler("Results",
function ( )
for i = 1,#TheTable do
local r,g,b = math.random(255),math.random(255),math.random(255)
outputChatBox(" "..i.." ",root,r,g,b)
end
end
)
addCommandHandler("Insert",
function ( )
local ID = math.random(10,5000)
table.insert ( TheTable , {ID} )
end
)