Here are my scripts:
script.Parent.MouseButton1Click:Connect(function() local folder = game.Workspace:FindFirstChild("Folder") folder:Destroy() end)
2nd:
script.Parent.MouseButton1Click:Connect(function() local folder = Instance.new("Folder") folder.parent = game.Workspace while true do local part = Instance.new("Part") part.parent = folder part.Anchored = false wait() end end
Edited by ~ JesseSong
Closed as Not Constructive by JesseSong
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?