How to make a variable that spans across multiple scripts?
04 | game.ServerStorage.Value.Value = false |
06 | print (game.ServerStorage.Value.Value) |
07 | game.ServerStorage.Value.Value = true |
09 | print (game.ServerStorage.Value.Value) |
This is my code that i am just using for testing loops and BoolValues.
The while loop I made functions completely fine, although I want to change the value of Cool (The variable) to false.
I want to know if there is any way to change the values of a variable from another script, and if so , how.