local count = 0 local function func(table, name) for i, v in pairs(table) do if type(v) == "table" then func(v, tostring(i)..".") elseif type(v) == "function" then print(tostring(name..i.." ✅")) count += 1 end end end func(getgenv(), "") task.wait(3) warn("Your Executor Support "..count.." Functions")