How do I make this door stop letting Players interact with it after a while?
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.
03 | workspace.DANK.Locked = true |
05 | workspace.DANK.Transparency = . 3 |
07 | workspace.DANK.Transparency = . 5 |
09 | workspace.DANK.Transparency = . 6 |
11 | workspace.DANK.Transparency = . 8 |
13 | workspace.DANK.Transparency = 1 |
15 | workspace.DANK.Transparency = 0 |
17 | workspace.DANK.CanCollide = false |
19 | workspace.DANK.CanCollide = true |
20 | print 'the script works m8' |
22 | game.Workspace.DANK.Touched:connect(onTouch) |