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

Is there Local Sound?

Asked by 8 years ago

Is there a way to make sound play for only one player?

1
LocalScript. You can use a LocalScript to play a sound in workspace for only the intended person to hear (at least, that's what I've heard). M39a9am3R 3210 — 8y
0
M39a9a3R is correct as long as filtering enabled is true and the sound is played from a local script the sound will be local ProfessorSev 220 — 8y

1 answer

Log in to vote
2
Answered by 8 years ago

The actual way to make 'local music', or music that plays to the ears of one person is to parent the Sound to the players PlayerGui.

local Sound = Instance.new("Sound", game.Players.alphawolvess.PlayerGui)
Sound:Play() --  pretend there is a song id in it.
0
There are other ways to do this, but the way I said is the preferable way. alphawolvess 1784 — 8y
Ad

Answer this question