How can I run two functions when the same value changes?
Do I have to run them separately like this:
boolValue.Changed:Connect(function1)
boolValue.Changed:Connect(function2)
Or can I connect them together by doing something like this:
boolValue.Changed:Connect(function1, function2)
I prefer to run them together on the same line, but I’m not sure if I can.