Hello, helper, can you help me make a remove script for me where if you click on it and it will remove the thing click on it was it like something
Tree = game.Workspace.Tree script.Parent.MouseButton1Down:connect(function() tree.Destory() end
You need to insert a click detector into the brick you have the script in.
script.Parent.ClickDetector.MouseClick:connect(function(plr) script.Parent:Destroy() end)