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

How do I make a tool make sound when I click on the screen?

Asked by 3 years ago

Ive been looking around for a while and either they are outdated or have wrong scripts in them Please help lol

1 answer

Log in to vote
0
Answered by 3 years ago

try this

Sound = Instance.new'Sound'
Sound.Parent = yourtoolpath
Sound.PlayOnRemove = false
Sound.SoundId = "soundidhere"

(yourtoolpath).Activated:Connect(function()
    Sound:Play()
end)
Ad

Answer this question