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

Why does the output keeps on printing even I put debounce?

Asked by
Xapelize 2658 Moderation Voter Community Moderator
5 years ago
Edited 3 years ago

Please note this is a old post, so the time when I posted this I was a young kid and a noob, please don't complain

GIF preview are not public due to private issues.

01local part = script.Parent
02local ceiling = workspace.ce
03debounce = false
04 
05 
06function ontouched()
07    debounce = true
08    ceiling.Transparency = 1
09    debounce = false
10end
11 
12function touchedended()
13    debounce = true
14    ceiling.Transparency = 0
15    debounce = false
View all 24 lines...

Does anything blocks the debounce to work?

There no error at all, every help is appreciated.

0
Sorry that the GIF was abit of lagging. Xapelize 2658 — 5y

1 answer

Log in to vote
1
Answered by 5 years ago
Edited 5 years ago

So the problem is that you're printing ("Touching") or ("Touch Ended") for each touch, not connecting to the actual function. You're also not waiting between them and instantly setting the debounce to true/false.

To fix it: 1) Delete the lines that say print() and end).

2) Have a wait between setting debounce and have a check for the debounce.

Fixed script:

01local part = script.Parent
02local ceiling = workspace.ce
03debounce = false
04local waitTime1 = 3; -- Time to wait on the onTouched before resetting debounce.
05local waitTime2 = 3; -- Time to wait on the TouchEnded function before resetting debounce.
06 
07 
08function ontouched()
09   if debounce then return end; -- If debounce is true, then stop here, else, continue.
10    debounce = true
11    ceiling.Transparency = 1
12    wait(waitTime1);
13    debounce = false
14end
15 
View all 26 lines...

Please accept as answer if this worked for you.

0
This is working... Im so stupid XDDDD Xapelize 2658 — 5y
Ad

Answer this question