Just wondering why this does not make all parts in a model transparent when the YesClick Detector is clicked.
local model = game.Workspace.TestModel.Model:GetDescendants() local button = game.Workspace.TestModel.Yes.YesClick button.MouseClick:Connect(function() for index, model in pairs(model) do model.Transparency = 1 end
Thanks