My script won't move when the value is true?
So when I set the Value to true the death sound still plays, meaning that the script did not see that the Value was true:
01 | local Position = Vector 3. new() |
02 | local Monster 1 = game.Workspace.Nightmare |
03 | local Monster 2 = game.Workspace.Nightmare 2 |
05 | Monster 1. Position = Vector 3. new( 4.366 , 6.608 , 20.635 ) |
07 | if Monster 1. Position = = Vector 3. new( 4.366 , 6.608 , 20.635 ) and game.Workspace.EndoCurtain 7. Curtain.Value.Value = = true then |
09 | Monster 1. Position = Vector 3. new(- 41.254 , 9.873 , 15.47 ) |
13 | game.Workspace.DeathSound:Play() |
15 | if Monster 2. Position = = Vector 3. new( 10.852 , 6.541 , 21.017 ) and game.Workspace.EndoCurtain 1. Curtain.Value.Value = = true then |
17 | Monster 2. Position = Vector 3. new(- 41.254 , 9.873 , 15.47 ) |
21 | game.Workspace.DeathSound:Play() |
24 | Monster 2. Position = Vector 3. new( 10.852 , 6.541 , 21.017 ) |
Any ideas?