Niroxel
|
  |
| Joined: 06 Mar 2011 |
| Total Posts: 692 |
|
|
| 17 Jul 2011 06:13 PM |
function onPlayerAdded(player) pcall(function() game.Lighting:findFirstChild("ScreenGui"):Clone().Parent = player.PlayerGui end) end game.Players.PlayerAdded:connect(onPlayerAdded) |
|
|
| Report Abuse |
|
|
| 17 Jul 2011 06:40 PM |
function onPlayerAdded(player) repeat wait() until player:FindFirstChild("PlayerGui") pcall(function() game.Lighting:findFirstChild("ScreenGui"):Clone().Parent = player.PlayerGui end) end game.Players.PlayerAdded:connect(onPlayerAdded) |
|
|
| Report Abuse |
|