I am making an FNF game, and there are multiple left arrows with the same name coming in, (cuz, y'know, you need to press those arrows to win." so I have all the arrows with the same name in a for do loop, how could I find the arrow that will disappear when it is hit? Here is my script:
for i, v in pairs(bfarrows:GetChildren()) do if v.Name == "LeftPressedClone" then --what I need help with end end