Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Billboard button GUI not working/responding?

Asked by
RjsMc 48
6 years ago

Im trying to make a speech bubble somewhat thingy that consists of a Billboard GUI and a Button. Clicking the button does nothing. I only have one script, and everything is set to active. Could someone help?

Simple script:

script.Parent.TextButton.MouseButton1Click:connect(function()
        print("hoi")
end)

1 answer

Log in to vote
0
Answered by
Rare_tendo 3000 Moderation Voter Community Moderator
6 years ago

Clicking events of TextButtons parented to a BillboardGui instance will not fire. You could try and make an invisible part, make a SurfaceGui in StarterGui, set the adornee of it to the invisible part, and then code the button.

0
I thought they worked. Thanks for the information RjsMc 48 — 6y
Ad

Answer this question