I'm not able to perform arithmetic on an IntValue I placed in ServerStorage. For instance:
local i = game.ServerStorage.i i = i + 1 --Error here
What can I use instead? I need to access this variable between two scripts and manipulate it as shown above.
u forgot to put .Value, so do
local i = game.ServerStorage.i
i.Value = i.Value + 1