im a bit confused of when the statement "function" if in the middle of the line, because i was used to see it at the beginning
is
function DialogChoiceSelected(player,choice)
end
game.Workspace.Dialog.DialogChoiceSelected:connect(DialogChoiceSelected)
the same thing as
workspace.Dailog.DialogChoiceSelected:connect(function(player,choice)
end)
? |