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
1 | Tree = game.Workspace.Tree |
2 |
3 | script.Parent.MouseButton 1 Down:connect( function () |
4 | tree.Destory() |
5 | end |
You need to insert a click detector into the brick you have the script in.
1 | script.Parent.ClickDetector.MouseClick:connect( function (plr) |
2 | script.Parent:Destroy() |
3 | end ) |