How do I make a script constantly check a bool value, and if its true/false it does something, without useing a while true do if bla bla.
BoolValue:PropertyChangedSignal("Value"):Connect(function() if BoolValue.Value == true then -- Do stuff here end end)