Creating a new instance via code

is it possible to create a new instance with code, without Instance.new() or Clone()?

I couldn’t find any other sources on this so I’m asking here. Please note that I don’t need to know this, I am just curious

thanks :grin:

1 Like

No, those are required for instancing. You can create pseudoinstances (simulate instances) with userdata (newproxy) or tables which a lot of developers do when applying OOP-in-Lua but of course those aren’t the same as actual Roblox instances.

2 Likes