Sorry for the odd title, wanted a more "Specific title" lol
So Here's the script
function onTouched(hit) wait(0) script.Parent.Sound:play() end script.Parent.Touched:connect(onTouched)
When touching the block, it should make the Sound (In the block) make noise.
Here's the music/noise Id
1307335902
Any Ideas?
You cannot wait 0 seconds. You could do wait() which is the smallest amount of time possible or you can wait(.1) but you cannot wait for no seconds. Also :connect is deprecated. You should use :Connect. hope this helps. Comment if you need further help. Have a great day scripting!