When I press the buttons, the value will get bigger and won't decrease, if the value is larger, then the door won't open? Help? Door script
01 | -- Varibles |
02 | local light = script.Parent.Light |
03 | local openlight = light.Open |
04 | local closelight = light.Close |
05 | local door = script.Parent.Door |
06 | local buttonpressed = script.Parent.TotalPressed |
07 | function teamwork() |
08 | if buttonpressed.Value < = 2 then |
09 | closelight.Enabled = false |
10 | light.BrickColor = BrickColor.new( "Lime green" ) |
11 | openlight.Enabled = true |
12 | door.Transparency = 0 |
13 | door.Cancollide = false |
14 | end |
15 | wait( 3 ) |
Button script
01 | local pressed = script.Parent.Parent.TotalPressed |
02 | function onPressed(hit) |
03 | if hit.Parent:findFirstChild( "Humanoid" ) and hit.Parent.Humanoid.Health ~ = 0 then |
04 | pressed.Value = pressed.Value + 1 |
05 | script.Parent.BrickColor = BrickColor.new( "Really red" ) |
06 | else |
07 | pressed.Value = pressed.Value - 1 |
08 | script.Parent.BrickColor = BrickColor.new( "Lime green" ) |
09 | if pressed.Value < 0 then |
10 | pressed.Value = 0 |
11 | end |
12 | end |
13 | end |
14 | script.Parent.Touched:connect(onPressed) |
No errors in output If you can, explain why it won't work so I'll know why it's wrong?
the reason why you are not getting the outcome you want is because you want to have Clicked Detectors instead of trying to find value. an example of a ClickDetector is a simple CanCollide door
01 | local part = script.Parent |
02 | g = true |
03 |
04 | function open() |
05 | g = false |
06 | part.CanCollide = g |
07 | end |
08 | function close() |
09 | g = true |
10 | part.CanCollide = g |
11 | end |
12 | function OnClicked() |
13 | if g = = true then open() else close() end |
14 | end |
15 |
16 |
17 | script.Parent:WaitForChild( "ClickDetector" ).MouseClick:connect(OnClicked) |
here we can easy label g as door, and continue on. Anyways, from this idea you should realize that instead of a door, it can be a light. The awesome part with this is the idea that you can add more effects to the opening and closing. Yet, if you do not want to have a Click Detector, you can use on hit values if Humanoid touches wall or in your case light. Personally you can either have bricks with onhit values, or you can have a Click Detector. Since you are using lights, the best feature is onhit, and what you forgot to add is a Debounce boolean.