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

How to use debounce??

Asked by 10 years ago

I'm using "enabled" instead of debounce. The problem here is that the weapons are spawning two or three at a time into the player's backpack. How do I fix this?

01--Aceta
02local venom = game.Lighting.Venomshank
03local dark = game.Lighting.Darkheart
04local katana = game.Lighting.BlueKatana
05local sword = game.Lighting.Sword
06local enabled = false
07 
08function onTouch(hit)
09    if hit.Parent and hit.Parent:FindFirstChild('Humanoid') and enabled == false then
10        enabled = true
11        local player = game.Players:GetPlayerFromCharacter(hit.Parent)
12        local character = hit.Parent
13        character.Torso.CFrame = CFrame.new(Workspace.teleportation.Position+Vector3.new(math.random(1,10),math.random(1,10),math.random(1,10)))
14        local Sword = sword:Clone()
15        Sword.Parent = player.Backpack
View all 34 lines...

3 answers

Log in to vote
2
Answered by
ipiano 120
10 years ago

Personally, I wouldn't use debounce for this. If multiple people touch the block at once, only one will get the weapons because debounce is activated, and the onTouch only registers right when they touch it, not the whole time until they leave.

That being said, your problem is that sometimes onTouch registers a couple times when the parts come in contact. What I would do is check the Backpack to see if they have the weapons, and if they don't the give them.

Ad
Log in to vote
1
Answered by 10 years ago

What ipiano said regarding this specific problem is dead on. However, here is an explanation on debounces:

A debounce should be a boolean (meaning it can either be true or false but nothing else). You can choose whether to default this boolean to either true or false, but keep in mind what you've chosen!

When a certain function is called, you'd check if your debounce is NOT the default value. If it isn't, you just return right out of your function - it shouldn't do anything right now! As soon as you've checked your debounce, you should set your debounce to the opposite of it's default value, and then, at the last line of a function (or right before a return), you should set it back.

An example:

01local debounce = false --Create a debounce with a default value of false
02 
03function checkDebounce() --Create a function
04    if debounce then return end --Is the debounce currently true?  Okay, then just stop this function dead in its tracks!
05    debounce = true --The debounce wasn't true yet, but now it is.  We don't want to overlap!
06    wait(2) --Replace this with everything your function does
07    debounce = false --Okay, reset the debounce!
08end
09 
10script.Parent.Touched:connect(function(hit)
11    checkDebounce()
12end)
Log in to vote
0
Answered by 10 years ago

I've already tried checking if the tool already exists in the backpack, but it keeps erroring. After that I went to booleans.

0
How did you check for the tool? ipiano 120 — 10y

Answer this question