uh oh, i seem to have forgot yet another thing. your require statement is wrong too. the require function takes one argument, which is where the module script is. for example, the workspace or a tool.
here is the correct way:
local memezzs = require(workspace.memezzsModule)
and if you ever need to call functions from the module, here is how you do it:
memezzs.functionName()
|