Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I get this door to move when these the value is a certain value?

Asked by
yoshi8080 445 Moderation Voter
9 years ago

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
02local light = script.Parent.Light
03local openlight = light.Open
04local closelight = light.Close
05local door = script.Parent.Door
06local buttonpressed = script.Parent.TotalPressed
07function teamwork()
08 if buttonpressed.Value <= 2 then
09    closelight.Enabled = false
10    light.BrickColor = BrickColor.new("Lime green")
11    openlight.Enabled = true
12door.Transparency = 0
13door.Cancollide = false
14end
15wait(3)
View all 21 lines...

Button script

01local pressed = script.Parent.Parent.TotalPressed
02function onPressed(hit)
03 if hit.Parent:findFirstChild("Humanoid") and hit.Parent.Humanoid.Health ~= 0 then
04pressed.Value = pressed.Value + 1
05script.Parent.BrickColor = BrickColor.new("Really red")
06else
07pressed.Value = pressed.Value - 1
08script.Parent.BrickColor = BrickColor.new("Lime green")
09if pressed.Value < 0 then
10pressed.Value = 0
11end
12end
13end
14script.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?

1 answer

Log in to vote
0
Answered by 9 years ago

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

01local part = script.Parent
02g = true
03 
04function open()
05    g = false
06    part.CanCollide = g
07    end
08function close()
09        = true
10        part.CanCollide = g
11end
12function OnClicked()
13    if g == true then open() else close() end
14end
15 
16 
17script.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.

Ad

Answer this question