For those who know javascript, you might use .querySelector or .querySelectorAll; so is there a way to implement that in Roblox Lua. For who doesn’t what the query selector does - it gets the object’s name regardless of what their parent is in. For example: if parent1 has a child named child and parent2 has a child named child, by using querySelector, you can get te child of both parents without writing childOne = parent1.child and childTwo = parent2.child.