Anonymous Connections

Do anonymous connections automatically disconnect after their use? For example, would Roblox store a memory address for the following:

TweenService:Create(part, expandInfo, {
		Position = resizedPosition,
		Size = part.Size + newSize
	}):Play()

I have no use for storing this tween, but will this end up creating memory leaks?

1 Like

They shouldn’t. Its anonymous. Its value should be dropped.

1 Like