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

How do i add a debounce to this script ?

Asked by 5 years ago
01local tool = script.Parent
02local player = game:GetService("Players").LocalPlayer
03local oGUI = script:FindFirstChild("ScreenGui")
04 
05 
06tool.Equipped:Connect(function(mouse)
07    local GUI = oGUI:Clone()
08GUI.Parent = player.PlayerGui
09    wait(1)
10    GUI.Equiping.Visible = false
11 
12    mouse.Button1Down:connect(function()
13 
14 
15        local ray = Ray.new(tool.Glowstone.CFrame.p, (mouse.Hit.p - tool.Glowstone.CFrame.p).unit * 400)
View all 53 lines...

This is a local script by the way

1 answer

Log in to vote
0
Answered by
0_2k 496 Moderation Voter
5 years ago
01local tool = script.Parent
02local player = game:GetService("Players").LocalPlayer
03local oGUI = script:FindFirstChild("ScreenGui")
04local db = false
05 
06 
07tool.Equipped:Connect(function(mouse)
08    local GUI = oGUI:Clone()
09GUI.Parent = player.PlayerGui
10    wait(1)
11    GUI.Equiping.Visible = false
12 
13    mouse.Button1Down:connect(function()
14    if not db then
15        db = true
View all 58 lines...
Ad

Answer this question