Answers for "roblox metatable"

1

roblox metatable

local x = {}
local metaTable = {}       -- metaTables are tables, too!
setmetatable(x, metaTable) -- Give x a metatable called metaTable!
print(getmetatable(x)) --> table: [hexadecimal memory address]
Posted by: Guest on July-11-2021

Browse Popular Code Answers by Language