I currently ran into a problem. If I’m not mistaken you can only change the text of a BillboardGui through a ServerScript. But because it’s a ServerScript it changes the text for everyone. How do you change it so that only the client sees the change?
ALTERNATIVE:
You would usually create a LocalScript
, Assign a Variable to the BillboardGui
, then change the Text inside from there
You would usually use the following to fire the LocalScript
:
-
ReplicatedFirst
-
StarterGui
-
StarterCharacter/PlayerScripts
NORMAL WAY:
You can Adornee the UI using a ScreenGui
, First Parent the BillboardGui
to the new ScreenGui
, then Adornee (NOT PARENT) the UI to the Part you want, after that you are able to use LocalScripts
inside the BillboardGui
2 Likes
You can change the text of a BillboardGui in the client by using a localscript.
Oh, I see. Thank you very much!
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.