It's a script that destroy's it's parent. I was wanting to know if this would work.
while true do wait(0.5) script.Parent Destroy() end
No, it would be:
sp = script.Parent wait(0.5) sp:Destroy()
Copy the brick and put it in lighting, leave the brick in Workspace and the Script in Workspace
while true do wait(0.5) game.Workspace.PartName:destroy() wait(0.5) game.Lighting.PartName:clone().Parent = Workspace end