If I have a local variable in a module script located in replicated storage such as below:
local module ={}
local variable = "a"
module.changevariable= function(newletter)
variable = newletter
end
return module
And I require the module script from a client’s local script, would the changes they make to the variable be reflected on other clients who require the script?