How do i add a debounce to this script ?
01 | local tool = script.Parent |
02 | local player = game:GetService( "Players" ).LocalPlayer |
03 | local oGUI = script:FindFirstChild( "ScreenGui" ) |
06 | tool.Equipped:Connect( function (mouse) |
07 | local GUI = oGUI:Clone() |
08 | GUI.Parent = player.PlayerGui |
10 | GUI.Equiping.Visible = false |
12 | mouse.Button 1 Down:connect( function () |
15 | local ray = Ray.new(tool.Glowstone.CFrame.p, (mouse.Hit.p - tool.Glowstone.CFrame.p).unit * 400 ) |
16 | local part, position = workspace:FindPartOnRay(ray, player.Character, false , true ) |
17 | local beam = Instance.new( "Part" ,workspace) |
18 | beam.FormFactor = "Custom" |
20 | beam.BrickColor = BrickColor.new( "Cyan" ) |
21 | beam.CanCollide = false |
23 | beam.Transparency = 0.15 |
25 | local distance = (tool.Glowstone.CFrame.p - position).magnitude |
26 | beam.Size = Vector 3. new( 0.3 , 0.3 , distance) |
27 | beam.CFrame = CFrame.new(tool.Glowstone.CFrame.p, position) * CFrame.new( 0 , 0 , -distance / 2 ) |
28 | game:GetService( "Debris" ):AddItem(beam, 0.1 ) |
31 | local human = part.Parent:FindFirstChild( "Humanoid" ) |
33 | human = part.Parent.Parent:FindFirstChild( "Humanoid" ) |
40 | GUI.Time.Visible = true |
49 | GUI.Time.Visible = false |
This is a local script by the way