MouseButton1Click not working?

I’m making a mod call system, and whenever I press a button it will open, but its not opening, it shows this:

Heres is the script:


Does anyone know how to fix this?

1 Like

it cant be on a textlabel, it has to be a textbutton

1 Like

Hey there, @elithebanana4

The error message you’re encountering, “MouseButton1Click is not a valid member of TextLabel,” indicates that you’re trying to use the MouseButton1Click event with a TextLabel, which doesn’t support this event.

To fix this, ensure that you’re using a GUI element that does support MouseButton1Click, such as a TextButton. Here’s the adjusted code:

-- Assuming script.Parent is a TextButton
script.Parent.MouseButton1Click:Connect(function()
    script.Parent.Parent.CallModFrame.Visible = true
end)

With this change, your button should open the CallModFrame as expected.
If you have any more questions or run into issues, feel free to ask for further assistance. Also check out the documents if you haven’t already:
Roblox GUI Documentation

Best regards,
[Zero]

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.