-- Return the name of its file name local function GetName() return "module_1" end -- Return Vector3.__new(0,100,0) local function GetVector() return Vector3.__new(0,100,0) end -- required for using IntelliSense (predictive input) in VScode return { GetName = GetName, GetVector = GetVector }