My main.lua ile is getting rather big to scroll up/down. Should I start moving functions into a main2.lua and link the functions like below.
local main2 = require( “main2” )
Func1 = main2.Func1
Func2 = main2.Func2
Func3 = main2.Func3
Is there a better way?