Local function issues (attempt to index global self a nil value)(SOLVED)

Hi there! If I understand correctly your code fragments, you should replace

local function show()

by

local function show(self)

and call it as

show(self)

Ciao!

3 Likes