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

Value is not counting down despite no errors in output. How do I fix this?

Asked by 4 years ago
Edited 4 years ago

CODE:

01local AI = script.Parent.Parent.Timer.PositionNumber
02 
03local Lighting = game.ServerStorage.Freddy
04 
05local World = game.Workspace.Animatronics.Freddy
06 
07local Footstep = script.Parent.Parent.Timer.RemoteFunction.Footstep.Sound
08 
09 
10repeat game:GetService("RunService").Stepped:Wait() until AI.Value == 5
11 
12 
13script.Parent.DoorTimer.Value = (math.random(10,15))
14 
15 
16 
17    while game.Workspace.DoorL.Closed.Value == true do
18        wait(1)
19        script.Parent.DoorTimer.Value = script.Parent.DoorTimer.Value -1
20    end

So basically when I press a button on a model the boolean value turns true, and pressing it again makes it false. And this script makes it so when something certain happens a counter is randomly set, and having the mentioned BooleanValue set to true should subtract it every second its true. All the setups dont have problems, the BooleanValue changed, the DoorCounter gets randomly set,

But the main problem is getting the counter to go down when the BooleanValue is True

0
is the boolean value getting set back to false when the door is closed? Jonix151 65 — 4y
0
it gets set to true when the door is closed and set to false when it isn't. Adenandpuppy 87 — 4y
1
Try this: while game.Workspace.DoorL.Closed.Value == true do wait(1) if script.Parent.DoorTimer.Value == nil then script.Parent.DoorTimer.Value = script.Parent.DoorTimer.Value -1 end end JesseSong 3916 — 4y
1
Have you found a solution yet? If so edit the script JesseSong 3916 — 4y
View all comments (2 more)
1
Finally a hard question for me to solve thanks for posting. JesseSong 3916 — 4y
0
hmmmmmmmmmmmmmm coolmanHDMI 72 — 4y

4 answers

Log in to vote
4
Answered by
JesseSong 3916 Moderation Voter Community Moderator
4 years ago
Edited 4 years ago

Apparently, the while loops only get(s) called essentially, so you should put the while loop like this. I think the issue was because of the loop, if the while loop gets called even once then it will break the script, and you need to check whether it's not true.

1while workspace.DoorL.Closed.Value == true do
2if not workspace.DoorL.Closed.Value  then
3        wait(1)
4        script.Parent.DoorTimer.Value = script.Parent.DoorTimer.Value -1
5    end
6end
Ad
Log in to vote
1
Answered by 4 years ago

I have a timer gui script maybe you can use it if you cant find a solution (280 is the amount of seconds)

1local time = 280
2 
3for i = time, 1, -1 do
4    wait(1)
5    script.Parent.Text = i
6end
0
THANKS FOR ACCEPTING! :D coolmanHDMI 72 — 4y
Log in to vote
1
Answered by 4 years ago
Edited 4 years ago

Improvements

Use :GetService() for the ServerStorage and Workspace services

Use :WaitForChild() to make sure an instance exists before using it

Explanation

Once your code gets to the while loop, the condition is checked, however, once that condition is false, then any code after the loop will run and you will be unable to have the loop occur again.

Instead, you can move the condition inside the loop as a if statement and change the condition value to true. Another option is using :GetPropertyChangedSignal() if you need to run any code after the loop. You can also use break to exit out of the loop.

Revised Server Script

01local Par = script.Parent
02local DTimer = Par:WaitForChild("DoorTimer")
03local DPar = Par.Parent
04local AI = DPar:WaitForChild("Timer"):WaitForChild("PositionNumber")
05local Footstep = DPar:WaitForChild("Timer"):WaitForChild("RemoteFunction"):WaitForChild("Footstep"):WaitForChild("Sound")
06 
07local Lighting = game:GetService("ServerStorage"):WaitForChild("Freddy")
08local WS = game:GetService("Workspace")
09local World = WS:WaitForChild("Animatronics"):WaitForChild("Freddy")
10local Closed = WS:WaitForChild("DoorL"):WaitForChild("Closed")
11 
12repeat
13    game:GetService("RunService").Stepped:Wait()
14until AI.Value == 5
15 
View all 24 lines...
Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

Try using a while true do loop with an if statement saying if the door is closed. If it's closed then break out of the loop.

1while true do
2    wait(1)
3    script.Parent.DoorTimer.Value = script.Parent.DoorTimer.Value -1
4 
5    if not game.Workspace.DoorL.Closed.Value then
6        break
7    end
8end

Answer this question