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

How do i check if a bool value is changed to false or the value is false to begin with?

Asked by 6 years ago

How do i check if a bool value is changed to false or the value is false to begin with without copy and pasting the code (too much code to copy and paste and wouldn't be efficient) e.g:

01BoolValue.Changed:connect(function(NewValue)
02    if NewValue == false then
03    --Lots of code
04    end
05end)
06 
07 
08if BoolValue == false then
09    --Lots of code (exact same as above)
10end

How would i join these together for efficiency therefore considerably lowering the script line count?

0
i really dont wanna copy and paste the code as it would turn the script into 600 lines instead of 300 plus i need to copy and paste this script multiple times and change a few values as it applies to other scenarios LordOfWatermelons 27 — 6y
0
NVM ive used bindable function to make the script line considerably lower LordOfWatermelons 27 — 6y

1 answer

Log in to vote
1
Answered by
Cyrakohl 108
6 years ago
Edited 6 years ago

If you want to check if it has changed then try this checks at a wait time of however you want it checks if the bool is false

1local Bool = false
2 
3While wait() do
4 if Bool == false then
5          print(“Boolean is false..”)
6end
7       end
0
while true do is not capitalized User#23365 30 — 6y
Ad

Answer this question