Does a cloned object still carry a Tag by CollectionService?

I’m curious to know if you have an object which has a tag assigned to it, and then you clone it, does that clone still have the tag?

4 Likes

Yes.

15 Likes

Thank you

This is something you could have tested yourself, btw…

local CollectionService = game:GetService("CollectionService")
local p = Instance.new("Part")
CollectionService:AddTag(p, "Tag")
local clone = p:Clone()
print(CollectionService:HasTag(clone, "Tag")) -- prints true
9 Likes

Yeah I knew I could of have. But nevertheless, thank you for the example.