of     1   

YoBoiDevDerpy
#183022862Friday, February 05, 2016 3:42 AM GMT

for a game im working on
YoBoiDevDerpy
#183022894Friday, February 05, 2016 3:43 AM GMT

if (tablename)[1] == false then would that work?
Hedr0n
#183022951Friday, February 05, 2016 3:44 AM GMT

There's a much better way I. Sure but if #tbl > 0 then
climethestair
#183023050Friday, February 05, 2016 3:45 AM GMT

if #tablename == 0 then print 'Table is Empty' end or if you are checking first array value if tablename[1] == nil then print 'Table is Empty' end == ""--for string == false for boolean
128Gigabytes
#183026726Friday, February 05, 2016 4:54 AM GMT

For arrays if (#array == 0) then end For dictionaries and arrays local function empty(input) for _, _ in next, (input) do return (false);) end return (true); end if (empty(dictionary)) then end if (empty(array)) then end

    of     1