local function hookEvents(choice)
choice.MouseEnter:Connect(function()
choiceSelected(choice)
end)
choice.MouseLeave:Connect(function()
choiceUnselected()
end)
end
hookEvents(Choice1)
hookEvents(Choice2)
5 Likes