Health is not a valid member of Model? (SOLVED)
1 | local player = game.Players.LocalPlayer |
2 | local character = player.Character |
3 | if not character or not character.Parent then |
4 | character = player.CharacterAdded:wait() |
8 | game.Players.LocalPlayer.Character.Health:Destroy() |
As you can probably see, im trying to delete the health regen script. However whenever this script runs:
14:16:36.233 - Health is not a valid member of Model
I have no idea how that could happen, as even if Health's parent is nil, I believe it wouldn't show a nonexistance error?