Enums.HealthSource
Enumarator for where Twilight should look for Health and MaxHealth properties.
| Name | Absolute Value | Description |
|---|---|---|
| Humanoid | function(a, b) return a.Character:FindFirstChild("Humanoid") and a.Character.Humanoid[b] end | Default Roblox Humanoid Health System. |
| NRPBS | function(a, b) return a.NRPBS and a.NRPBS[b].Value end | Arsenal Support |
tip
By this logic, you could pass your own custom function with the same 'system' if you are in a custom game that has another health system. Or, you could create a pull request for Twilight to officialy support it.