smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
|
| 16 Jul 2011 08:51 PM |
while wait(0.25) do for _,v in pairs(game.Players:GetPlayers()) do lol = game.Lighting.ImageLabel1:clone() if v.Character and v.PlayerGui:FindFirstChild("ScreenGui1") then lol.Parent = v.PlayerGui.ScreenGui1 Torso = v.Character.Torso for _,b in pairs(v.PlayerGui.ScreenGui1:GetChildren()) do if b.Name == "ImageLabel1" then b.Position = UDim2.new(0.129999993, Torso.Position.x, 0.650000036, Torso.Position.z) b:remove() end end end end end
I'm not sure what happened since there is no output but even if "ImageLabel1" is there it will not change positions. |
|
|
| Report Abuse |
|
|
| |
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
|
| 16 Jul 2011 08:53 PM |
| Nothing, it says the script is running. |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2011 08:57 PM |
while wait(0.25) do for _,v in pairs(game.Players:GetPlayers()) do lol = game.Lighting.ImageLabel1:clone() if game.Workspace:findFirstChild(""..v.Name.."") and v.PlayerGui:FindFirstChild("ScreenGui1") then lol.Parent = v.PlayerGui.ScreenGui1 Torso = v.Character.Torso for _,b in pairs(v.PlayerGui.ScreenGui1:GetChildren()) do if b.Name == "ImageLabel1" then b.Position = UDim2.new(0.129999993, Torso.Position.x, 0.650000036, Torso.Position.z) b:remove() end end end end end
Try that. |
|
|
| Report Abuse |
|
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
|
| 16 Jul 2011 09:17 PM |
| Didn't work and not sure what I did before but now its just not showing up in the PlayerGui at all |
|
|
| Report Abuse |
|
|
| |
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
| |
|
|
| 16 Jul 2011 09:26 PM |
while wait(0.25) do for _,v in pairs(game.Players:GetPlayers()) do lol = game.Lighting.ImageLabel1:clone() if game.Workspace:findFirstChild(""..v.Name.."") and v.PlayerGui:FindFirstChild("ScreenGui1") then lol.Parent = v.PlayerGui.ScreenGui1 Torso = v.Character.Torso for _,b in pairs(v.PlayerGui.ScreenGui1:GetChildren()) do if b.Name == "ImageLabel1" then b.Position = UDim2.new(0.129999993, Torso.Position.X, 0.650000036, Torso.Position.Z) b:remove() end end end end end
Try it now |
|
|
| Report Abuse |
|
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
| |
|