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

How do I make this door stop letting Players interact with it after a while?

Asked by
EpicLilC 150
9 years ago

So I was messing around with functions and names, so I made a script so that a door that named "DANK"(because I wanted the script or whatever to locate that only) would become locked, after the player touches it, slowly fade away using transparency, then make it so the player can walk through it, and last, make it so the player can't walk through it. My problem is, every time I touch the door again, the transparency goes crazy. How do I fix this? Here's the script.

01function onTouch()
02    wait(.3)
03    workspace.DANK.Locked = true
04    wait(1)
05    workspace.DANK.Transparency= .3
06    wait(1)
07    workspace.DANK.Transparency= .5
08    wait(1)
09    workspace.DANK.Transparency =.6
10    wait(1)
11    workspace.DANK.Transparency=.8
12    wait(1)
13    workspace.DANK.Transparency=1
14    wait(1)
15    workspace.DANK.Transparency=0
View all 22 lines...

1 answer

Log in to vote
1
Answered by
obcdino 113
9 years ago

You need a debounce for your door, preventing the player from touching it too many times.

Basically, it makes sure that if the player touches it and the debounce is still running, it won't do the function by returning end.

FINAL SCRIPT:

01debounce = false
02function onTouch()
03    if debounce then return end
04    wait(.3)
05    workspace.DANK.Locked = true
06    wait(1)
07    workspace.DANK.Transparency= .3
08    wait(1)
09    workspace.DANK.Transparency= .5
10    wait(1)
11    workspace.DANK.Transparency =.6
12    wait(1)
13    workspace.DANK.Transparency=.8
14    wait(1)
15    workspace.DANK.Transparency=1
View all 26 lines...
Ad

Answer this question