I’ve been working with ModuleScripts recently, and I am having an issue right now.
Apparently, whenever I require any ModuleScripts, it loads ONLY its default values.
It doesn’t load anything that has been inserted to it after the game loaded
Here´s an example where I printed how much money the server had when the game first loaded (By default it’s 0)
local Values = {
Money = 0,
}
return Values
Then, I call a function that goes something like this:
ServerValues.Money = ServerValues.Money + QuantityToGive
Once I’ve done that, I try to print the money once again, and it prints 0
This seems to happen either if I require the ModuleScript from client or server side
Somehow the game still manages to know the new values of the ModuleScripts, cause when I need to know how much money I have, it works
if ServerValues.Money < TotalPrice then
dialogRequestEvent:InvokeClient(player, {"cantAfford",TotalPrice - ServerValues.Money})
elseif ServerValues.Money >= TotalPrice then
dialogRequestEvent:InvokeClient(player, {"proceedToBuy",TotalPrice})
end
Long story short, the ModuleScript can be edited, but when I try to use for displaying its values or something like that, it just returns its default values.
Is there any explanation for this?