In some game people use ClickDetector to play a audio on a part does anyone have a script or know a script to make it work?
Here is a simple example of what you could do. This is very basic, though, so you should try improving it on your own.
script.Parent.ClickDetector.MouseClick:Connect(function() --Insert a ClickDetector in a part script.Parent.Sound:Play() --Insert a Sound into the part end)