1 | local soundService = game:GetService( "SoundService" ) |
2 | local click = soundService:WaitForChild( "Click" ) |
3 |
4 | local button = script.Parent |
5 |
6 | button.MouseButton 1 Down:connect( function () |
7 | click:Play() |
8 | print ( "Played" ) |
9 | end ) |
It prints "Played" but no sound comes out. I have this error
Sound failed to load SoundService.Click : rbxassetid://255462699
The sound is made by stickmasterluke and is just a pop sound. Anyone help? Am I allowed to use SoundService or should I place the sound somewhere else??