How can I check if an object has children in it?
You could create a table of the objects children by using the GetChildren() method, and then see if the table has more than 0 values...Which would mean there is children
EXAMPLE(lets say you want to figure out if a part named "Part" in the workspace has children):
local part = workspace.Part partTable = part:GetChildren() if #partTable >0 then print("Object has at least one child") end