For some reason this script doesn't seem to be working. Can anyone help me fix it?
if script.Parent.Health = >100 then script.Parent.Parent.Part.SelectionBox.Visible = false wait(3) script.Parent.Health == 100 script.Parent.Parent.Part.SelectionBox.Visible = true end
Right,Here we go... By the way use == if you want it to mean equal to Or use > if you want it to mean greater then
if script.Parent.Health == 100 then script.Parent.Parent.Part.SelectionBox.Visible = false wait(3) script.Parent.Health = 100 script.Parent.Parent.Part.SelctionBox.Visible = true end