local tool = script.Parent
local sound = tool:WaitForChild("Sound3")
local canPlaySound = true
local cooldownTime = 2
tool.Activated:Connect(function()
if canPlaySound then
canPlaySound = false
sound:Play()
task.wait(cooldownTime)
canPlaySound = true
end
end)