So, in order to do this, you need to access the Dialog.DialogChoiceSelected
event.
Here's an example of how to do it.
1 | local dialog = -- [ path to dialog ] |
2 | local dialogChoice 1 = -- [ path to dialogchoice 1 ] |
3 | local music = -- [ path to music sound ] |
5 | dialog.DialogChoiceSelected:Connect( function (player, dialogChosen) |
6 | if dialogChosen = = dialogChoice 1 then |
Hope this helped!
P.S. Here's where I got the information. This is a very useful Wiki page. https://developer.roblox.com/en-us/api-reference/event/Dialog/DialogChoiceSelected