Hello I’m trying to use this module for my game but I have no idea how to use it.
I know how to use and make modules but this one confuses me…
How do I run this?
Usually I do this:
Module Script
local Module = {}
module.Example = function()
local something = “123”
return something
end
Server Script
local Module = require(script:WaitForChild(“Module”))
local something = Module.Example()
print(something)
im trying to do this
and im attempting to use it by doing:
local xboxCursorModule = require(script:WaitForChild(“xboxCursorModule”))
xboxCursorModule.ShowCursor()