Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

My script won't move when the value is true?

Asked by 5 years ago

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:

01local Position = Vector3.new() 
02local Monster1 = game.Workspace.Nightmare
03local Monster2 = game.Workspace.Nightmare2
04wait(25)
05Monster1.Position = Vector3.new(4.366, 6.608, 20.635)
06print("Moved")
07if Monster1.Position == Vector3.new(4.366, 6.608, 20.635) and game.Workspace.EndoCurtain7.Curtain.Value.Value == true then
08    wait(3)
09    Monster1.Position = Vector3.new(-41.254, 9.873, 15.47)
10    print("Ran")
11    else
12    wait(10)
13    game.Workspace.DeathSound:Play()
14end
15if Monster2.Position == Vector3.new(10.852, 6.541, 21.017) and game.Workspace.EndoCurtain1.Curtain.Value.Value == true then
View all 24 lines...

Any ideas?

0
This is why testing helps. Try going onto the serverside by playing the game and clicking the clientside button in the home tab of studio, then check if the value is true or not. haba_nero 386 — 5y
0
I checked it and the value is true when I activate the EndoCurtain. When I De-Activate it the Value changes, meaning that the EndoCurtain works. Cynical_Innovation 595 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

My best guess is to make it loop. Looking at the program it will only ever run once.

0
But that’s not what I need. Do you mean the part that checks the value? Cynical_Innovation 595 — 5y
0
Yes. If you put a if function in a script, it will only ever run it once. However if you put it in a loop it will occur when the conditions are met! PoppyandNeivaarecute 134 — 5y
0
Also, if you only want it to run at a certain time, give the loop a condition, such as PoppyandNeivaarecute 134 — 5y
0
while runProgram == true do PoppyandNeivaarecute 134 — 5y
0
Ahh. Thanks a lot! Cynical_Innovation 595 — 5y
Ad

Answer this question