I want to have a ModuleScript’s function run overlapping each other (so multiple of the same function can run at once instead of waiting for a long time.
Spawn code (I know it’s messy and with while loops, I’m using it to test if a player is notified more than one time).
spawn(function()
while wait(0.2) do
NotificationModule.Notify("This feature is a work in progress!")
end
end)