I made a Dialog person and its a shop. When the player clicks yes then I want a gui to pop up in the player's gui. Can you help me?
Hello! Hopefully I am not two years late but you will want to use DialogChoiceSelected.
1 | workspace.Dialog.DialogChoiceSelected:connect( function (player,choice) |
2 | if choice.Name = = "Yes" then |
3 | --Add here the GUI script |
4 | elseif choice.Name = = "No" then |
5 | --Add here what you want to occur when the player says "No". |
6 | end |
7 | end ) |