Quick question:

okay so straight to the point

is a local variable i.e:

local activeplayers = {}

inside a modulescript unique to that module script and not like… replicated for the script that require that modulescript?

i know it sounds dumb. i overthink alot and this is one of em. any answers r welcome thank you

Nope it wont be replicated unless its like:

local module = {}
module.activePlayers = {}
return module

or

_G.activePlayers = {}
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.