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

How do I make a Announcements GUI that goes to every servers when activated in my game?

Asked by
ads_bv 29
3 years ago

Also how do I make a part teleport to you after 10 seconds?

0
Please help me for my game ads_bv 29 — 3y

1 answer

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

Use the messaging service, Example :

local msg = game:GetService("MessagingService")

local connection = msg:SubscribeAsync("topicName",function(mes) -- this will look for new posts
print(mes) -- this will print the message received
end)

msg:PublishAsync("topicName","message here") -- this will publish a post
0
no i mean when i press "send" it should go to every servers and every players ads_bv 29 — 3y
0
you just need to customise the script, i can't really do the rest for you. shadow2008_br 176 — 3y
0
oh ads_bv 29 — 3y
Ad

Answer this question