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

How do I Tween a TextLabel for everyone?

Asked by 5 years ago

How do I make it so When I click a button it will Tween a text label for everyone..

And if you offer more help then, do I do

[Variable for the textlabel].Text = " "..[Variable for TextBox].Text

to make the text whatever a textbox text is?

0
what do you mean by tweening a text label? are you trying to tween its position? GoldAngelInDisguise 297 — 5y
0
Yes NinjaXDpro 22 — 5y
0
You would need to use a remote event to tell all the players to do something ie clinet -> server - > all clients. User#5423 17 — 5y
0
you can easily do this by using GuiObject:TweenPosition https://developer.roblox.com/api-reference/function/GuiObject/TweenPosition GoldAngelInDisguise 297 — 5y
View all comments (4 more)
0
^ Thats the problem i tween it and it will only show for me, I want it for everyone Like an announcment, And also Kingdom5 please explain in detail I am really confused on remoteEvents NinjaXDpro 22 — 5y
0
You'll need to use a RemoteEvent and use :FireAllClients() from server and have a local script run the code to tween the GUI. Keep in mind of latency, it wont be seen the exact same for everyone. Also FE = FilteringEnabled alphawolvess 1784 — 5y
0
^ How should i format it? NinjaXDpro 22 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 3 years ago

Use a RemoteEvent's :FireAllClients() function. The clients must then take that event trigger and use the TweenPosition from the GuiObject. Hope that solves your issue. RemoteEvents are a very important thing to get into.

Ad

Answer this question