|
| 19 Apr 2015 04:58 PM |
The script has no error messages but doesn't print a in the second if statement but does in the first one.
while true do wait() if a == 1 then if game.Workspace.New.Value == true then a = 0 print(a) end if game.Workspace.Go.Value == 1 then if a == 0 then print(a) |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
| |
|
|
| 19 Apr 2015 05:17 PM |
while wait() do if a == 1 and game.Workspace.New.Value == true then a = 0 print(a) elseif game.Workspace.Go.Value == 1 and a == 0 then print(a) end end
God grant me the wisdom to not punch stupid ppl, for I know I will go to prison. |
|
|
| Report Abuse |
|
|
| |
|