Essentially; I'm trying to create a bunch of textboxes with the loveframes library and for some reason whenever I click one of the checkboxes, I can no-longer click the other three.
Problem:
My problem is the fact that the clicked checkbox will un-check and check once more, however; I can no-longer click on the other check-boxes within the frame for some reason.
Code:
Code: Select all
for _,v in ipairs(RecipeMaker.ingredientCheckboxes) do
if v:GetHover() then
v:SetChecked(not v:GetChecked())
end
end