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

Ugh! Debounce problems AGAIN! Is this code fixable?

Asked by
BryanFehr 133
4 years ago

Hello all, me again. Have another debounce issue, and don't understand as to why this isn't working properly! Looking to make a GUI pop up if player doesn't have the proper leaderstat value, or more than the proper leaderstat value!

Here is my SCRIPT and the GUI is the child of the SCRIPT

Any and ALL HELP is appreciated!

local debounce = false

script.Parent.Touched:Connect(function(hit)
    debounce = true
    local player = game.Players:GetPlayerFromCharacter(hit.Parent)
    local lvl = player.leaderstats.Door1
    if player and lvl.Value > 1 and not player.PlayerGui:FindFirstChild('buydoor') then
        script.Parent.CanCollide = false
    else
        local cloneui = script.buydoor:Clone()
        cloneui.Parent = player.PlayerGui
        cloneui.Frame:TweenPosition(UDim2.new(0.25,0,0.2,0))
        debounce = false
    end
end)

3 answers

Log in to vote
3
Answered by 4 years ago

Debounces are used to regulate how many times an event can be fired. In your code you are currently not regulating anything, you're just changing a variable.

I modified your script, added comments around the debounce area so you can read those if you want a better understanding of what I changed.

local debounce = false

script.Parent.Touched:Connect(function(hit)
    if debounce == true then return end --//If debounce is true, then return nil
    debounce = true --//Turn the debounce to true to make sure it doesn't fire the event again during the execution of the code below

    local player = game.Players:GetPlayerFromCharacter(hit.Parent)
    local lvl = player.leaderstats.Door1
    if player and lvl.Value > 1 and not player.PlayerGui:FindFirstChild('buydoor') then
        script.Parent.CanCollide = false
    else
        local cloneui = script.buydoor:Clone()
        cloneui.Parent = player.PlayerGui
        cloneui.Frame:TweenPosition(UDim2.new(0.25,0,0.2,0))
    end

    debounce = false --//We have to put this at the end to make sure the debounce becomes false again and the event is activated once more
end)
0
I believe this code will work, but I'm experiencing a problem now as well with the local lvl as it's calling for "player" which is nil to the server. I've added :WaitForChild("leaderstats"):WaitForChild("Door1") which didn't work, and still says it is nil, how to fix this? BryanFehr 133 — 4y
0
change the if statement on line 9 to: if player and player.leaderstats.Door1.Value > 1 and not player.PlayerGui:FindFirstChild('buydoor') then CeramicTile 847 — 4y
0
Of course if this is a server script like you say, the "buydoor" inside of the PlayerGui must have been put there by the server too. If it wasn't and filtering is enabled you'll probably run into another error. CeramicTile 847 — 4y
Ad
Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

you didnt add the if statement for the debounce you just had a variable named debounce laying around doing nothing and your just setting it to true and false

Log in to vote
0
Answered by 4 years ago

From what I've been told, you shouldn't do that. This is what I was told to do:

if not debounce then 
    debounce = true

-- or this:

if debounce = false then
    debounce == true

Answer this question