this is my first time using dialogs, im trying to make anything happen when you use the dialog but nothing happens at all
attached is a video showing me attempting to use the dialog, and theres nothing in the output
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Event = ReplicatedStorage.HighlightEvent
local Dialog = script:FindFirstAncestorWhichIsA("Dialog")
local Choice = script.Parent
local Target = workspace.Logo
Dialog.DialogChoiceSelected:Connect(function(Player, SelectedChoice)
print("somethin selected")
if SelectedChoice == Choice then
print("chosen")
Event:FireClient(Player, Target, 15)
end
end)```