How would I make a sound play for everyone if a certain dialog choice was picked?
-would it be a local script or a normal script?
Helo, Innovation_dev!
you should call this function when the player clicks on the dialog:
-- Normal Server Script(not local script) local song function PlaySound(songid) song = Instance.new("Sound") song.SoundId = "rbxassetid://" .. songid song.MaxDistance = 10000000 song:Play() wait(song.TimeLength) song:Destroy() end
Don't forget to call the function and place the sound id on the brackets!
Good Luck with your games!
Depends whether or not you only want the person who is having the dialog to hear it.