localfolder=Instance.new("Folder")folder.ChildAdded:Connect(function()return"Triggered"end)localconnection=getconnections(folder.ChildAdded)[1]-- First connection in the listprint(connection.Function())-- Output: Triggeredconnection:Fire()-- Same as above, Output: Triggeredprint(typeof(connection.Thread))-- Output: thread