Its parent is nil, but nevertheless it is created, won’t it somehow slow down the server or affect memory? What will happen to her? Will it be automatically erased?
Edit to be more useful: If they leave the scope/have no reference to them at all such as any upvalues, the garbage collector will remove it from memory after some time
It appears that the instances do take memory, but a single one alone does not make too much of a difference. I’m not yet sure if they delete on their own
It will continue to exist in memory, and will never get removed from memory. Its not a good idea to be leaving parts unparented like this, because the parts need to be :Destroy()ed to free up memory.
This is a case of what is called a memory leak. Memory leaks happen when some memory is tied up because of an instance, and this instance is not traceable or untracked, and won’t be freed automatically (Instances like Parts are prime examples! Unless you explicitly call :Destroy(), it won’t be garbage collected).