So, something like this
for i,v in pairs(Workspace.stuff:GetChildren()) do
if v.Name == "Stuff" then
v:Destroy()
wait()
end
end
would go into the command bar like this?
for i,v in pairs(Workspace.stuff:GetChildren()) do if v.Name == "Stuff" then v:Destroy() wait() end end
|