put this script in the garage and insert a clickdetector into the garage (the garage should only consist of one part).
local s = script.Parent
local switch = true
s.ClickDetector.MouseClick:connect(function()
if switch == true then
switch = false
s.Transparency = 1
elseif switch == false then
switch = true
s.Transparency = 0
end
end)
|