if
script.Parent.Parent.Parent.Parent.Character.Humaniod.Health = 100
end
You misspelled 'Humanoid', you used one = instead of the == that you should use when checking equality, and forgot a 'then'.
if script.Parent.Parent.Parent.Parent.Character.Humanoid.Health == 100 then --// Do stuff end
Hope this helped.