How to "Attach" this module

Hey developers, I’m usually good at figuring this stuff out but I’ve been stuck on this one specifically for a while, when I create UIs I usually run them off modules example:
image

& it usually works out well for me to set up;


I have this brand-new module that basically tweens any type of text label;

I’ve had issues trying to connect it and I’m not sure why, anything will help :smile:

In your ‘ClientHolder’ connect it by using require
You may do so by doing something like
example

local SlideModule = require(game:GetService("ReplicatedStorage"):WaitForChild("SlideText"))
local text; -- example ur textlabel
SlideModule:Animate() -- add ur parameters

https://developer.roblox.com/en-us/api-reference/lua-docs/Roblox-Globals

For more information about the require global function.