Answered by
5 years ago Edited 5 years ago
There are a few things you'll need to do in order to change the sound.
First off, don't use :WaitForChild(). Using :WaitForChild() constantly is a bad habit to get into.
Secondly, in order to make the sound come from a new block, you'll need to go to the workspace.
An example is below.
1 | local sound = game.Workspace.Playing.Sound |
In order to use this with your current script, you could do:
1 | local sound = game.Workspace.Playing.Sound |
8 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |
You actually did a pretty good job at making a script.
Good luck in whatever you want to make.
PS: If this doesn't work, leave a comment.