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:
01 | local part = script.Parent |
02 | local ceiling = workspace.ce |
09 | if debounce then return end ; |
11 | ceiling.Transparency = 1 |
16 | function touchedended() |
17 | if debounce then return end ; |
19 | ceiling.Transparency = 0 |
24 | script.Parent.Touched:Connect( function (ontouched); |
26 | script.Parent.TouchEnded:Connect( function (touchedended); |
Please accept as answer if this worked for you.