local dotro = script.Parent -- Предполагается, что скрипт находится внутри кнопки local plat = workspace.Platforma1 function onClick() plat.Transparency = 0 end dotro.MouseClick:Connect(onClick)
local dotro = script.Button1
local plat = workspace.Platforma1
function touch (object)
local humanoid = object.Parent:FindFirstChild("Humanoid")
if humanoid then
plat.Transparency = 0
end
end
dotro.Touched:Connect(touch)