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

debounce disables script from working?

Asked by 6 years ago
01local debounce = false
02 
03script.Parent.Touched:connect(function(hit)
04    if not debounce then
05 
06        debounce = true
07 
08        wait(0.3)
09    script.Parent.closeddoors.Transparency = 0
10    script.Parent.closeddoors.CanCollide = true
11    script.Parent.opendoor1.Transparency = 1
12    script.Parent.opendoor2.Transparency = 1
13    wait(3)
14    if hit.Parent:FindFirstChild('Humanoid') then
15        hit.Parent.Torso.CFrame = CFrame.new(-13.084, 122.459, 989.779)
View all 23 lines...

the script does not work when i added debounce and my best guess is the wait function at the beginning

but i don't know

1 answer

Log in to vote
2
Answered by 6 years ago
Edited 6 years ago

Looks like you're missing an end

You have two if statements within your function, but only one end!

01local debounce = false
02 
03script.Parent.Touched:connect(function(hit)
04    if not debounce then
05 
06        debounce = true
07 
08        wait(0.3)
09        script.Parent.closeddoors.Transparency = 0
10        script.Parent.closeddoors.CanCollide = true
11        script.Parent.opendoor1.Transparency = 1
12        script.Parent.opendoor2.Transparency = 1
13        wait(3)
14 
15        if hit.Parent:FindFirstChild('Humanoid') then
View all 25 lines...

Indenting helps identify issues like these :)

0
Correct User#19524 175 — 6y
0
kthx spunkworks 110 — 6y
Ad

Answer this question