-- Скрипт помещён внутрь объекта ProximityPrompt
local prompt = script.Parent
-- Замените "ModelTransparent" и "ModelVisible" на реальные имена ваших моделей в Workspace
local modelTransparent = game.Workspace:WaitForChild("ModelTransparent")
local modelVisible = game.Workspace:WaitForChild("ModelVisible")
local function onTriggered(player)
-- Проходим по всем потомкам модели и делаем MeshPart прозрачными
for _, item in ipairs(modelTransparent:GetDescendants()) do
if item:IsA("MeshPart") then
item.Transparency = 1 -- полная прозрачность
end
end
-- Проходим по всем потомкам другой модели и делаем MeshPart видимыми
for _, item in ipairs(modelVisible:GetDescendants()) do
if item:IsA("MeshPart") then
item.Transparency = 0 -- полная видимость
end
end
end
prompt.Triggered:Connect(onTriggered)