|
| 14 Aug 2014 09:50 PM |
This script use to keep a player from automatically regenerating health, but no it removes the health bar from the player.... Anyone know the fix?
function Added(Model) wait(5); if Model == nil then return end if Model.Name == "Health" then if Model == nil then return end print("Removed Health"); Model:remove(); end end game.Workspace.DescendantAdded:connect(Added)
|
|
|
| Report Abuse |
|
|
|
| 14 Aug 2014 09:51 PM |
| Nvm just realized it was because of some thing else |
|
|
| Report Abuse |
|
|
iiEssence
|
  |
| Joined: 18 Jun 2014 |
| Total Posts: 3467 |
|
|
| 14 Aug 2014 09:52 PM |
game.Players.PlayerAdded:connect(function(p) p.CharacterAdded:connect(function(c) if c:findFirstChild("Health") then c:Destroy(0 end end) end)
Health is the default health regen script |
|
|
| Report Abuse |
|
|