I have three functions in my lua file in below order
Func1
Func2
Func3
I call only Func3 first and once it done, at the end I call Func2. Once Func2 is executed I call Func1. But now once Func1 is done I have call back Func3 again. But when I do this I get error “Attemp to call upvalue ‘Func3’ <a table value>”.
Please help me for the above.