How to stop .__index from showing up while accesing table

So basically when i want to access a function inside a table, which was made using .__index,
This shows up:

DevforumSS
How can I remove that? Thanks.

Here's the code if the screenshot wasn't enough
module.something = {}
module.something.__index = module.something

function module.something.MyFunction()
end

Delete the second line maybe

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.