I've got a local script, and I want to get the LocalPlayer's health for a Gui, but game.Players.LocalPlayer.Health comes up inconclusive because Health isn't one of the properties of LocalPlayer. How can I use LocalPlayer to find his current Health?
game.Players.LocalPlayer.Character:WaitForChild("Humanoid").Health
e = game.Players.LocalPlayer:WaitForChild("Humanoid") e.Health
-- ADVICE , If you want to know his health via gui you can use his health gui, we all have one
HealthGUI = Player.PlayerGui:FindFirstChild("HealthGUI") if HealthGUI ~= nil then -- Do what you want! Just an advice since you're using guis