{"id":18809929,"url":"https://github.com/bytebit-org/roblox-extendedcollectionservice","last_synced_at":"2026-07-04T09:31:17.825Z","repository":{"id":101503531,"uuid":"171482581","full_name":"Bytebit-Org/roblox-ExtendedCollectionService","owner":"Bytebit-Org","description":"Added functionality to layer on top of Roblox's CollectionService","archived":false,"fork":false,"pushed_at":"2019-07-05T16:55:47.000Z","size":86,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-29T02:48:11.657Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bytebit-Org.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-02-19T13:53:31.000Z","updated_at":"2021-07-13T17:07:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"b00264b3-e514-4423-9477-e3912e9bc7f0","html_url":"https://github.com/Bytebit-Org/roblox-ExtendedCollectionService","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bytebit-Org/roblox-ExtendedCollectionService","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bytebit-Org%2Froblox-ExtendedCollectionService","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bytebit-Org%2Froblox-ExtendedCollectionService/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bytebit-Org%2Froblox-ExtendedCollectionService/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bytebit-Org%2Froblox-ExtendedCollectionService/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bytebit-Org","download_url":"https://codeload.github.com/Bytebit-Org/roblox-ExtendedCollectionService/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bytebit-Org%2Froblox-ExtendedCollectionService/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35117334,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-04T02:00:05.987Z","response_time":113,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T23:18:15.202Z","updated_at":"2026-07-04T09:31:17.813Z","avatar_url":"https://github.com/Bytebit-Org.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Extended Roblox CollectionService\nAdded functionality to layer on top of Roblox's CollectionService\n\nDocumentation\n---\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:AddTagToAll(instances, tag)\u003c/code\u003e\u003c/summary\u003e\n\nAdds a tag to all elements in the array of instances\n\n**Parameters:**\n- `instances` (`array\u003cInstance\u003e`)  \nThe instances to tag\n- `tag` (`string`)  \nThe tag to add\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:AddTagsToAll(instances, tags)\u003c/code\u003e\u003c/summary\u003e\n\nAdds a list of tags to all elements in the array of instances\n\n**Parameters:**\n- `instances` (`array\u003cInstance\u003e`)  \nThe instances to tag\n- `tags` (`array\u003cstring\u003e`)  \nThe tags to add\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:RemoveTagFromAll(instances, tag)\u003c/code\u003e\u003c/summary\u003e\n\nRemoves a tag from all elements in the array of instances\n\n**Parameters:**\n- `instances` (`array\u003cInstance\u003e`)  \nThe instances to untag\n- `tag` (`string`)  \nThe tag to remove\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:RemoveTagsFromAll(instances, tags)\u003c/code\u003e\u003c/summary\u003e\n\nRemoves a list of tags to all elements in the array of instances\n\n**Parameters:**\n- `instances` (`array\u003cInstance\u003e`)  \nThe instances to untag\n- `tags` (`array\u003cstring\u003e`)  \nThe tags to remove\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:HasTags(instance, tags)\u003c/code\u003e\u003c/summary\u003e\n\nChecks whether a given instance has all the tags provided\n\n**Parameters:**\n- `instance` (`Instance`)  \nThe instance to check\n- `tags` (`array\u003cstring\u003e`)  \nThe tags to look for\n\n**Returns:**  \n`boolean`  \nTrue if the instance has all the tags\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetMutliTagged(tags)\u003c/code\u003e\u003c/summary\u003e\n\nGets all instances that match the given set of tags\n\n**Parameters:**\n- `tags` (`array\u003cstring\u003e`)  \nThe tags to match\n\n**Returns:**  \n`array\u003cInstance\u003e`  \nThe instances that match the set of tags\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetTaggedChildren(parent, tag)\u003c/code\u003e\u003c/summary\u003e\n\nGets all children of an instance with a tag\n\n**Parameters:**\n- `parent` (`Instance`)  \nThe parent to search the children of\n- `tag` (`string`)  \nThe tag to search for\n\n**Returns:**  \n`array\u003cInstance\u003e`  \nThe children that have the tag\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetTaggedDescendants(ancestor, tag)\u003c/code\u003e\u003c/summary\u003e\n\nGets all descendants of an instance with a tag\n\n**Parameters:**\n- `ancestor` (`Instance`)  \nThe ancestor to search the descendants of\n- `tag` (`string`)  \nThe tag to search for\n\n**Returns:**  \n`array\u003cInstance\u003e`  \nThe descendants that have the tag\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetMultiTaggedChildren(parent, tags)\u003c/code\u003e\u003c/summary\u003e\n\nGets all children of an instance with all of the given tags\n\n**Parameters:**\n- `parent` (`Instance`)  \nThe parent to search the children of\n- `tags` (`array\u003cstring\u003e`)  \nThe tags to search for\n\n**Returns:**  \n`array\u003cInstance\u003e`  \nThe children that have all the tags\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetMultiTaggedDescendants(ancestor, tags)\u003c/code\u003e\u003c/summary\u003e\n\nGets all descendants of an instance with all of the given tags\n\n**Parameters:**\n- `ancestor` (`Instance`)  \nThe ancestor to search the descendants of\n- `tags` (`array\u003cstring\u003e`)  \nThe tags to search for\n\n**Returns:**  \n`array\u003cInstance\u003e`  \nThe descendants that have all the tags\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetRelativesWithTags(baseInstance, tags, numLevels)\u003c/code\u003e\u003c/summary\u003e\n\nGets all relatives, not including the top-most ancestor, that match the given set of tags\n\n**Parameters:**\n- `baseInstance` (`Instance`)  \nThe instance to get the relatives of\n- `tags` (`array\u003cstring\u003e`)  \nThe tags to check for\n- `numLevels` (`number`)  \nThe number of levels to go up\n\n**Returns:**  \n`array\u003cInstance\u003e`  \nThe relatives that match, not including the baseInstance or the top-most ancestor\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetChildAddedSignal(parent, tag)\u003c/code\u003e\u003c/summary\u003e\n\nGets a signal for when a child is added with the given tag to the given parent\n\n**Parameters:**\n- `parent` (`Instance`)  \nThe parent to listen for children of\n- `tag` (`string`)  \nThe tag to listen for\n\n**Returns:**  \n`RBXScriptSignal`  \nThe signal, will provide the new child as an argument to any handlers connected to it\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetDescendantAddedSignal(ancestor, tag)\u003c/code\u003e\u003c/summary\u003e\n\nGets a signal for when a descendant is added with the given tag to the given ancestor\n\n**Parameters:**\n- `ancestor` (`Instance`)  \nThe ancestor to listen for descendants of\n- `tag` (`string`)  \nThe tag to listen for\n\n**Returns:**  \n`RBXScriptSignal`  \nThe signal, will provide the new descendant as an argument to any handlers connected to it\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetChildRemovedSignal(parent, tag)\u003c/code\u003e\u003c/summary\u003e\n\nGets a signal for when a child is removed with the given tag from the given parent\n\n**Parameters:**\n- `parent` (`Instance`)  \nThe parent to listen for children of\n- `tag` (`string`)  \nThe tag to listen for\n\n**Returns:**  \n`RBXScriptSignal`  \nThe signal, will provide the former child as an argument to any handlers connected to it\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003ccode\u003efunction Class:GetDescendantRemovedSignal(ancestor, tag)\u003c/code\u003e\u003c/summary\u003e\n\nGets a signal for when a descendant is removed with the given tag from the given ancestor\n\n**Parameters:**\n- `ancestor` (`Instance`)  \nThe ancestor to listen for descendants of\n- `tag` (`string`)  \nThe tag to listen for\n\n**Returns:**  \n`RBXScriptSignal`  \nThe signal, will provide the former descendant as an argument to any handlers connected to it\n\n\u003c/details\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbytebit-org%2Froblox-extendedcollectionservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbytebit-org%2Froblox-extendedcollectionservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbytebit-org%2Froblox-extendedcollectionservice/lists"}