Answers for "get metatable roblox"

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

Code answers related to "get metatable roblox"

Browse Popular Code Answers by Language