Essentially as the title says, what is the difference between :
and .
in Module Scripts. Here's what I mean:
local MainModule = {} function MainModule.Test() end -- OR function MainModule:Test() end return MainModule
Are they used for different purposes or are they basically the same? All help appreciated! Thanks.