How do I fix this script so that it only prints 1 name from punch choices? (it prints all the childrens names)
and then how would I make it so when I click it again it doesn’t repeat the same names until all of them have been printed once
foward.MouseButton1Down:Connect(function()
for _, punchChoice in ipairs(repStorage.PunchChoices:GetChildren()) do
print(punchChoice.Name)
end
end)