local Keybinds = {
    Movement = {
        ["One"] = "bing bong"
    },
    
    Actions = {
        ["Two"] = "bing bong"
    },
    
    Misc = {
        ["Three"] = "bing bong"
    }
}

local function TableChecker(t_able)
    return coroutine.wrap(function()
        for i, v in pairs(t_able) do
            print("Keybind [" .. i .. "]", v)
        end
    end)
end

TableChecker(Keybinds.Movement)

--[[local function CheckKeybinds(number)
    return coroutine.wrap(function()
        for i = 1, number do
            print("Keybind", i)
        end
    end)
end

for item in CheckKeybinds(1) do
    print(#item)
end--]]

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: