As the title says, is there a way to check if a folder has nothing in it?
To add to what I commented...
This would be a use of that
if #game.Workspace.Folder:GetChildren() == 0 then print('The Folder is empty') else print('The Folder is not empty') end