Hello! I would like to know if I run this script, will everything inside that folder be destroyed? (Maybe It’s just a dumb question, but I’m new at this…)
Examle:
local folder = game.Workspace.Folder wait(5) folder:Destroy()
Hello! I would like to know if I run this script, will everything inside that folder be destroyed? (Maybe It’s just a dumb question, but I’m new at this…)
Examle:
local folder = game.Workspace.Folder wait(5) folder:Destroy()
Yea, If you destroy a instance which has multiple children all the children would be destroyed.
You can figure this out by simply testing the script in studio, instead of making a devforum topic.