Module functions not working?

I must be doing some really wrong however, I can’t understand what I’m messing up in the first place at all. I’ve been doing the same thing for all the modules I’ve done and now this time, they don’t seem to function?

(Located in StarterPlayerScripts)

local Module = game.ReplicatedStorage.Module

Module.Test()

(Located in Replicated Storage)

function Module.Test()
	print("Test Worked")
end

Error:
https://gyazo.com/1d4c0dc6ecd5af2c53ce0955b181a71b

Did they change the behavior of module scripts or am I doing something completely wrong?

I believe you need to require the module script.

local Module = require(game.ReplicatedStorage.Module)

I’ve been doing that for 2 years and now literally forgot that somehow. OOF :sweat_smile:.