Hello, I have a question. Can values like int or strings be changed by the client side in anyway? Or is that just not possible?
Strings and numbers (Lua doesn’t have an int datatype) are immutable. Do you mean like IntValue and StringValue classes? If so their Value property can indeed be modified, however it won’t replicate to the server
From what I have experienced, no they can not. You must use a server script to change their value.
If you are wondering how to change a value on the client, the best solution is to use RemoteEvents and manage it on the server.
1 Like