How do I get all new Instances the got Tagged to a certain Tag

Hey, We all know CollectionService:GetTagged(tag) returns all instances that are currently tagged with that tag. Is there any way to listen to new Instances getting tagged to that tag anytime? Like is there any built-in Events?

game:GetService("CollectionService"):GetInstanceAddedSignal(tag):Connect(function(Inst)
	print(Inst, "got added")
end)
1 Like

Yo thanks man, it helped! TYSM

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.