So, I have a door which is MEANT to open when a button is clicked, but only ONE button. So, when OPEN is visible CLOSED is not, and when CLOSED is visible OPEN is not.
01 | local LO = script.Parent.Parent.L.Open |
02 | local LC = script.Parent.Parent.L.CLOSED |
03 | local RO = script.Parent.Parent.R.OPEN |
04 | local RC = script.Parent.Parent.R.CLOSED |
05 | local L 1 O = script.Parent.Parent.L 1. OPEN |
06 | local L 1 C = script.Parent.Parent.L 1. CLOSED |
07 | local R 1 O = script.Parent.Parent.R 1. OPEN |
08 | local R 1 C = script.Parent.Parent.R 1. CLOSED |
09 | function onClicked() |
10 | if R 1 C.Transparency = = 1 then |
11 | LC.Transparency = 1 |
12 | RC.Transparency = 1 |
13 | L 1 C.Transparency = 1 |
14 | R 1 C.Transparency = 1 |
15 | LC.CanCollide = false |
Well I dunno if this is what you wanted but here are somethings that are wrong with your script.
if open.transparency == 1 then
will check if the parts Transparency
is 0 which is will be 0 since there is no way to tell if the part will be changing. A way to do that is to add adebounce
which would be named as opened.
Transparency is lower cased, which is shouldn't be like that. it should be Transparency
same for cancollide, it should be CanCollide
It would be best to make a single button for this door from what the script says, so you only need one button named Open.
01 | local open = script.Parent.Parent.Open |
02 | local door = script.Parent.Parent.Door |
03 | opened = false |
04 | -- script |
05 | function onClicked() |
06 | if opened = = false then -- if value listed above is false, door is open and turns it true |
07 | door.Transparency = 1 |
08 | door.CanCollide = false |
09 | open.BrickColor = BrickColor.new( "Lime green" ) -- changes color if open |
10 | opened = true -- sets it back to true to open it |
11 |
12 | elseif opened = = true then -- if value listed above is true, door is closed and turns it false |
13 | door.Transparency = 0 |
14 | door.CanCollide = true |
15 | open.BrickColor = BrickColor.new( "Bright red" ) -- changes color if closed |
16 | opened = false -- sets it back to false to close it |
17 | end |
18 | end |
19 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |