|
| 15 Oct 2011 12:36 PM |
So basicly this is suppose to remove the health regeneration scripts inside your character, but it isn't working. Help pl0x?
function Spawn(Player) Health = Player.Character:findFirstChild("Health") Health2 = Player.Character:findFirstChild("HealthScript v1.3") if Health2 ~= nil and Health ~= nil then Health:remove() Health2:remove() end end function Enter(Player) Player.Changed:connect(function (property) if (property == "Character") then Spawn(Player) end end) end game.Players.ChildAdded:connect(Enter) |
|
|
| Report Abuse |
|
|
myrco919
|
  |
| Joined: 12 Jun 2009 |
| Total Posts: 13241 |
|
| |
|
|
| 15 Oct 2011 12:49 PM |
| I tried that and it didn't work. |
|
|
| Report Abuse |
|
|
myrco919
|
  |
| Joined: 12 Jun 2009 |
| Total Posts: 13241 |
|
| |
|
|
| 15 Oct 2011 01:01 PM |
| I changed it, tested it, still doesn't work... |
|
|
| Report Abuse |
|
|
| |
|