GuiObject.Activated not working with collection service

When I try and use GuiObject.Activated in conjunction with collection service, nothing happens, however when I use GuiObject.MouseButton1 it works as expected. Is there something that I am doing wrong or is this a bug?

Working
for _, GUI in ipairs(Tagged) do
	GUI.MouseButton1Click:Connect(function()
		print("Here")
	end
end)
Not Working
for _, GUI in ipairs(Tagged) do
	GUI.Activated:Connect(function()
		print("Here")
	end
end)

Tried copying this part of code in my place, works without any issues :woman_shrugging:

Make sure the Active property is checked.

1 Like