local soundService = game:GetService("SoundService") local click = soundService:WaitForChild("Click") local button = script.Parent button.MouseButton1Down:connect(function() click:Play() print("Played") 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??