on the wiki page for basic functions, it says that this…
local a = newproxy()
local mt = getmetatable(a)
print( mt ~= nil )
mt.__index = {Name="Proxy"}
print( a.Name )
should print “true” and “Proxy”, but for me it prints “false” and errors that mt is nil
2 Likes
You must use newproxy(true), not just newproxy(). It’s unintuitive and not documented on the Roblox wiki.
3 Likes
EchoReaper
(EchoReaper)
#3
Moved this to Documentation Requests so IX team can improve newproxy documentation.
system
(system)
Closed
#5
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.