How to change values in game?

I have events tied to Values and I am trying to find out how I can change these values in-game. I couldn’t find any way, If you have any ideas or suggestions or maybe a solution, can you please help me

1 Like

You can reference a value with a variable:

local thatValue = anywhere.Value -- Replace with where your value is

Then you can just change the .Value property of it.

thatValue.Value = somethingElse -- Replace with what you want to set it to
1 Like

no no, i dont think you understood. When I go into the game on Roblox, NOT STUDIO, I have to change the Values from ReplicatedStorage

1 Like

Then you can use the Developer Console (you can turn it on with F9) and use the command line from there to do it.

1 Like

thanks alot, saved me from another hour of research

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.