Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I make this sound where you can hear it from any distance?

Asked by 8 years ago
                Spawn(function()
                    local Music = Sound:Clone()
                    Music.Parent = script.Parent
                    Music:Play()
                    wait(5)
                    Music:Destroy()

This is the function where the script plays the music. It just fades the further you are away from it. I don't know how to make it where you can hear it regardless of how far you are away from it.

0
Put the sound inside of the player's character or starter gui. legobuildermaster 220 — 8y
0
The sound is played when a button is clicked. I put it in starterGUI and it still doesn't make the sound locally Audible (hear-able) alonzo12345 60 — 8y

1 answer

Log in to vote
0
Answered by
traigla 75
8 years ago

Put the music in Workspace.

Music.Parent = game.Workspace
Ad

Answer this question