Try cPawn:HasEntityEffect(EffectType) together with cPawn:RemoveEntityEffect(EffectType)
Example:
Example:
if (not Player:HasEntityEffect(cEntityEffect.Slowness)) then -- Does not have entity effect Player:AddEntit... else -- Has entity effect Player:RemoveEntit.... end