I have i question to something that happned to me a few times while coding in Roblox Studio: I have a simple example whats the problem:
local Value = Instance.new("NumberValue")
Value.Value = 10
while true do
print(Value.Value)
end
Untill now everything is working, but if i add or remove the Value of "Value" it still prints 10 Its the same thing when i want to save the value in a Datastore it only takes the Value that was there when "Value" was created. I hope someone can help me. T_PK