I know client changes to module script won’t replicate but if the module script has a method that changes itself, would it replicate?
Here’s an example:
function module:Change(name)
self.Value = name
end
function module:Get()
return self.Value
end
If I were to call this on the server, the value would change but if I were to do the same on the client, will the server see these effects too?