Instead of using the MouseButton1Click event you could use the MouseButton1Up and MouseButton1Down event to play the “buttonDown” sound when the mouse button is being pressed and the “buttonUp” sound if the mouse button is released.
local buttonUp: Sound = script.Parent.buttonUp
local buttonDown: Sound = script.Parent.buttonDown
script.Parent.MouseButton1Down:Connect(function()
buttonDown:Play()
end)
script.Parent.MouseButton1Up:Connect(function()
buttonUp:Play()
end)
I hope that this helped you along with your problem.
Feel free to ask questions.
Thank you so much!, For second i think something wrong but i just realize that you just typing “buttonDown” & “buttonUp” instead “buttondown” & “buttonup”
Btw Thank you so much!