Changing something inside the StarterGui will not change it for all of the players. Instead, you can create a function to display a message for all of the players:
02 | for _,v in pairs (game.Players:GetPlayers()) do |
03 | local x = v.PlayerGui:FindFirstChild( "Ticker" ) |
05 | x = x:FindFirstChild( "Ticker" ) |
07 | x = x:FindFirstChild( "TextLabel" ) |
16 | game.Workspace.Flood.Size = Vector 3. new( 518 , 22 , 521 ) |
17 | game.Workspace.Flood.CFrame = CFrame.new(Vector 3. new(- 1 , 10 ,- 2.5 )) |
20 | game.Workspace.Flood.Size = Vector 3. new( 10 , 5 , 10 ) |
21 | game.Workspace.Flood.CFrame = CFrame.new(Vector 3. new(- 1 ,- 42 ,- 2.5 )) |
26 | Display( "Disaster: Flood" ) |
28 | Display( "You have 60 seconds to build" ) |