I'm trying to make a safezone where builds can't be made, so when people add a part it disappear and maybe a message would pop up? Thanks.
Here ya go
script.Parent.Touched:Connect(function(hit) if hit.Name == " " then -- What the name of the part that deletes it is named script.Parent:Destroy() end end)