Here is my program but it won't update no matter what!
1 | while true do |
2 | print (game.Workspace.Activate.Value) |
3 | wait( 1 ) |
4 | end |
if game.Workspace.Activate.Value
changes then it would still print the original number that the game started out with. It will not update. I change the value using another script.
Try something like this:
1 | local activate = game.Workspace.Activate.Value |
2 |
3 | while true do |
4 | activate = game.Workspace.Activate.Value |
5 | print ( tostring (activate)) --> for safety |
6 | wait( 1 ) |
7 | end |