BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
|
| 05 Mar 2013 08:59 PM |
while true do wait(60)
script.Parent.Visible = true
player = script.Parent.Parent.Parent.Parent
local g = game.Lighting:FindFirstChild(script.Parent.DNAValue.Value)
g:Clone().Parent = player
local guiexists = player:FindFirstChild(script.Parent.DNAValue.Value)
if guiexists == nil then
else print("DNA ALREADY EXISTS!")
end
end
-- This script is located in the gui it is going to clone, it is suppose to clone the gui every 60 seconds into the playergui. No output. |
|
|
| Report Abuse |
|
|
BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
| |
|
BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
| |
|
BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
| |
|
| |
|
|
| 06 Mar 2013 06:28 PM |
while wait(60) do player = script.Parent.Parent.Parent.Parent script.Parent.Visible = true if not player.PlayerGui:FindFirstChild(script.Parent.DNAValue.Value) then
local g = game.Lighting:FindFirstChild(script.Parent.DNAValue.Value)
if not g then print("What gui") end
g:Clone().Parent = player.PlayerGui end end |
|
|
| Report Abuse |
|
|