Hello! I am making a custom health billboard gui for my game. I can make the gui be inserted into the player and it works! I am trying to make it so that that different parts of the gui are visible depending on the health. with this part I want the first gui to be visible when the health is in between 75 and 100. I don't know How I can make the two in one if statement. I tried <= 100, >=75 but it does not know what the comma is. How can I do this?
if script.Parent.Parent.Humanoid.Health == 100 then -- I want to make this so that it works when it is between 75 and 100 script.Parent.Light100.Visible = true else script.Parent.Light100.Visible = false end
if script.Parent.Parent.Humanoid.Health >=75 and script.Parent.Parent.Humanoid.Health <= 100 then
Good luck on your project!