I have a Part named radio and I have a sound in that part and in the sound I have a script that has:
script.Parent.play()
Is is not working. No music at all!
It's because you used the Play
method incorrectly. It's a method for calling a function, so you need to use it like this:
script.Parent:Play()
Anyways, that should fix things up for you. If you have any further problems/questions, please leave a comment below, and I'll see what I can do :P