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
1 | if #game.Workspace.Folder:GetChildren() = = 0 then |
2 | print ( 'The Folder is empty' ) |
3 | else |
4 | print ( 'The Folder is not empty' ) |
5 | end |