|
| 11 Oct 2015 06:39 PM |
Okay.. this is sad, I dont know hot to fix this.
#code function onPlayerAdded(player) game.StarterGui.ScreenGui.load.Visible = true end
Whats seems to be the problem? |
|
|
| Report Abuse |
|
|
robomax11
|
  |
| Joined: 07 Jul 2011 |
| Total Posts: 6828 |
|
|
| 11 Oct 2015 06:40 PM |
player:WaitForChild('PlayerGui').ScreenGui.load.Visible = true
R$299,295 |
|
|
| Report Abuse |
|
|
| |
|
Aethex
|
  |
| Joined: 16 Oct 2011 |
| Total Posts: 2193 |
|
|
| 11 Oct 2015 06:41 PM |
you need to update the PlayerGui, not the StarterGui
use: player.PlayerGui.ScreenGui.load.Visible = true |
|
|
| Report Abuse |
|
|
|
| 11 Oct 2015 06:46 PM |
Oh yeah I forgot about PLayerGui
Still not working #codefunction onPlayerAdded(player) player.PlayerGui.ScreenGui.load.Visible = true end |
|
|
| Report Abuse |
|
|
|
| 11 Oct 2015 06:47 PM |
game.Players.PlayerAdded:connect(function(player) repeat wait() until player.PlayerGui:FindFirstChild("ScreenGui") player.PlayerGui.ScreenGui.load.Visible = true end)
-The [Guy] |
|
|
| Report Abuse |
|
|
| |
|