local p = {
x = 1,
__index = p
}
local tble = {}
setmetatable(tble,p)
print(tble.x) --> outputs nothing
but then yet this does?
local p = {
x = 1,
}
local tble = {}
setmetatable(tble,p)
p.__index = p
print(tble.x) --> outputs "1"
Edited by Thegameboy, 28 December 2015 - 12:55 AM.











