getrawmetatable Description: This function demonstrates the usage of the getrawmetatable API. Example: -- Get the raw metatable of a table local myTable = { a = 1, b = 2 } local metatable = getrawmetatable(myTable) print(metatable)