with a click detector but nothings working, all the scripts out there that i can find are for only a single block? The reason its not working is because its a bunch of parts grouped up but I don't know a script for that so can somebody please help?
There is no Script needed, simply store the ClickDetector
Instance as a child of the Model container, and it will activate for all descendants. The same principal applies for listening on to the signal for the Object activation:
local ClickDetector = script.Parent local function DissolveObject() local Model = ClickDetector.Parent:GetChildren() for _,Object in pairs(Model) do if (Object ~= ClickDetector) then Object:Destroy() end end end ClickDetector.MouseClick:Connect(DissolveObject)
If this works for you, don't forget to accept this answer!