Answered by
6 years ago Edited 6 years ago
The reason the gui will not appear is because you are saying game.StarterGui.Informed
As you see, the player has their own seperate gui's. It is located in game.Players.LocalPlayer.PlayerGui
Lets just say that the startergui clones into the player and is renamed to PlayerGui
Try this:
01 | game.Players.PlayerAdded:Connect( function (plr) |
05 | p.PlayerGui:WaitForChild( "Informed" ).Frame.TextLabel.BackgroundTransparency = 0.5 |
06 | p.PlayerGui.Informed.Frame.TextLabel.Text = "The show is starting! Grab a seat and enjoy the show!" |
08 | p.PlayerGui:WaitForChild( "Informed" ).Frame.TextLabel.BackgroundTransparency = 1 |
09 | p.PlayerGui:WaitForChild( "Informed" ).Frame.TextLabel.Text = "" |
11 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |