Is there a way to set a value to false without using wait?

I would like to be able to set my boolvalue to false at a given time without using wait
image
something similar to the function
“game.Debris:AddItem(Name, 3 —Time)”

You can start a task that waits and then does what you want:

dmv.Value = true
task.delay(3, function() dmv.Value = false end)
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.