|
| 07 Jul 2011 01:35 PM |
Why doesnt this work???
local h = script.Parent.Humanoid local HeadPos = script.Parent.Head local ChangeHumanoid = script.Parent.Humanoid while true do wait(1) if humanoid.Health == 40 then h.Sit=true local a = Instance.new("BillboardGui") local b = Instance.new("TextLabel") b.Parent = a --Inside BillbordGui a.Parent = HeadPos b.Text = "Revive Me" --Billbord name ChangeHumanoid.Name = "Downed" --Zombies dont kill you for i = 40, 0, -1 do --start 40 until 0 ? h.Health = h.Health - 1 -- One every 2 Secs wait(2) end if h.Health == 0 then -- Died b:Remove() a:Remove() end end end |
|
|
| Report Abuse |
|
|
| 07 Jul 2011 01:36 PM |
while wait(1) do a.Adornee = HeadPos |
|
|
| Report Abuse |
|
KuchiBoy
|
  |
| Joined: 29 Aug 2008 |
| Total Posts: 5374 |
|
|
| 07 Jul 2011 01:37 PM |
| I'm pretty sure you can't change the name of humanoids or players. It used to work, however. |
|
|
| Report Abuse |
|