am trying to make a gui where the player gets a question saying Join Battle and I want it to pop up at the same time for everone regardless of when they joined the server can u give me a hit on how I can do it
Hey sjskunice, this is a rather easy thing to achieve. If you desire to do this you would use a fire all clients function, this will fire to all the players (clients). I'll give you an example: 1. First add a' remote event' to workspace. 2. Write the script in workspace.
function FiringEvent() workspace.RemoteEvent:FireAllClients() end
while true do wait(10) FiringEvent() end
Add a text label and add a script inside it.
Write the local scripts code:
script.Parent.Visible = fakse workspace.RemoteEvent.OneClientEvent:Connect(function() script.Parent.Visible = true wait(3) script.Parent.Visible = false end)
Happy Coding, Destroyer1234x.