so you dont have to do something like
1 | If game.Workspace.Progress.Value = = 1 then |
2 | If game.Workspace.Go.Value = = 1 then |
3 | game.Workspace.Progress.Value = 2 |
4 | end |
5 | end |
6 | end |
Yes you can.
1 | if game.Workspace.Progress.Value = = 1 then |
2 | if game.Workspace.Go.Value = = 1 then |
3 | game.Workspace.Progress.Value = game.Workspace.Progress.Value + 1 |
4 | end |
5 | end |