How to Find something random in a folder by name

Basically theres a folder in my game that has a bunch of Models, some completely different some are the same (Atleast by name).

My problem is i want to remove one of them by a specific name but it doesnt matter which one.

Could i just use :FindFirstChild() and that would remove a random one of that name?

Yes, it would just remove a random one. And if it doesn’t matter which one is removed, you can just do this:

workspace.Folder.Part:Destroy()
1 Like

Okay thanks, i just wanted to make sure incase there was like some weird problem down the line

1 Like