How to play a sound on a click of a button

Unfortunately, i am absolutely terrible with welds. However, the least i can do is give you a link talking about welds which may solve your query.

Hope this helps! :+1:

Just do this script

while true do
sound.Loaded:Wait()

textButton.MouseButton1Down:Connect(function()
sound:Play()
end
end)